Skip to content

Commit

Permalink
fix: remove global imports
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Aug 24, 2024
1 parent d3d3b21 commit 9842802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
7 changes: 1 addition & 6 deletions src/Boltz.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
module Boltz

using ArgCheck: @argcheck
using Artifacts: Artifacts, @artifact_str
using JLD2: JLD2, load
using ForwardDiff: ForwardDiff
using GPUArraysCore: GPUArraysCore
using LazyArtifacts: LazyArtifacts
using JLD2: JLD2 # TODO[BREAKING]: Remove JLD2 dependency and ask users to load it
using Random: Random
using Reexport: @reexport
using Statistics: mean

@reexport using Lux

Expand Down
3 changes: 2 additions & 1 deletion src/initialize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ module InitializeModels

using ArgCheck: @argcheck
using Artifacts: Artifacts, @artifact_str
using JLD2: JLD2
using JLD2: JLD2 # TODO[BREAKING]: Remove JLD2 dependency and ask users to load it
using LazyArtifacts: LazyArtifacts
using Random: Random

using LuxCore: LuxCore
Expand Down

0 comments on commit 9842802

Please sign in to comment.