From 984280230c63e7ddf6bc8e5471b0be0808ec51f6 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Fri, 23 Aug 2024 16:56:20 -0700 Subject: [PATCH] fix: remove global imports --- src/Boltz.jl | 7 +------ src/initialize.jl | 3 ++- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/Boltz.jl b/src/Boltz.jl index 1293e06..acb4777 100644 --- a/src/Boltz.jl +++ b/src/Boltz.jl @@ -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 diff --git a/src/initialize.jl b/src/initialize.jl index 1cb4232..4ef5249 100644 --- a/src/initialize.jl +++ b/src/initialize.jl @@ -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