Skip to content

Commit

Permalink
fix: base-level imports
Browse files Browse the repository at this point in the history
  • Loading branch information
f-aguzzi committed Jun 26, 2024
1 parent 264b153 commit 8143f74
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/chemfusekit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from beartype.claw import beartype_this_package
beartype_this_package(conf=BeartypeConf(violation_type=TypeError))

import base
import df
import knn
import lda
import lr
import pca
import plsda
import svm
import utils
from . import base
from . import df
from . import knn
from . import lda
from . import lr
from . import pca
from . import plsda
from . import svm
from . import utils

0 comments on commit 8143f74

Please sign in to comment.