From f33fd01846eb983ed5432e2695d6f4f26891e1a1 Mon Sep 17 00:00:00 2001 From: fabiocfabini Date: Thu, 23 Feb 2023 13:09:33 +0000 Subject: [PATCH] Fix order of imports --- berry/__init__.py | 3 +-- berry/cli.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/berry/__init__.py b/berry/__init__.py index a5513a0..0130075 100644 --- a/berry/__init__.py +++ b/berry/__init__.py @@ -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 \ No newline at end of file diff --git a/berry/cli.py b/berry/cli.py index 70a7fd5..71d8073 100644 --- a/berry/cli.py +++ b/berry/cli.py @@ -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