Skip to content

Commit

Permalink
Fix order of imports
Browse files Browse the repository at this point in the history
fabiocfabini authored and ricardoribeiro-2020 committed Feb 23, 2023
1 parent 5cb6a7e commit f33fd01
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions berry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from berry.cli import berry_cli
from berry._version import __version__

from berry.cli import berry_cli

from berry.utils._logger import log
2 changes: 1 addition & 1 deletion berry/cli.py
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
import subprocess
import argparse, argcomplete

from _version import __version__
from berry import __version__

#TODO: Talk about np.savez
#NOTE: np.savez could help with backwards compatibility

0 comments on commit f33fd01

Please sign in to comment.