Skip to content

Commit

Permalink
Organize imports in Artifacts
Browse files Browse the repository at this point in the history
Apply @jebej's suggestions in JuliaLang/julia#39235 (comment), rebased onto master
  • Loading branch information
LilithHafner authored Jul 17, 2022
1 parent 2beb40c commit 23f8db1
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions src/Artifacts.jl
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
module Artifacts

using Artifacts, Base.BinaryPlatforms, SHA
using ..MiniProgressBars, ..PlatformEngines

import ..get_bool_env, ..set_readonly, ..GitTools, ..TOML, ..pkg_server, ..can_fancyprint,
..stderr_f, ..printpkgstyle

import Base: get, SHA1
using Base.BinaryPlatforms
using Artifacts
import Artifacts: artifact_names, ARTIFACTS_DIR_OVERRIDE, ARTIFACT_OVERRIDES, artifact_paths,
artifacts_dirs, pack_platform!, unpack_platform, load_artifacts_toml,
query_override, with_artifacts_directory, load_overrides
import ..get_bool_env
import ..set_readonly
import ..GitTools
import ..TOML
using ..MiniProgressBars
using ..PlatformEngines
import ..pkg_server, ..can_fancyprint, ..stderr_f, ..printpkgstyle
import ..Types: write_env_usage, parse_toml

using SHA

export create_artifact, artifact_exists, artifact_path, remove_artifact, verify_artifact,
artifact_meta, artifact_hash, bind_artifact!, unbind_artifact!, download_artifact,
Expand Down

0 comments on commit 23f8db1

Please sign in to comment.