Skip to content

Commit

Permalink
change order of import cli #193
Browse files Browse the repository at this point in the history
  • Loading branch information
hcwinsemius committed Dec 10, 2024
1 parent caef766 commit 7552a8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyorc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

__version__ = "0.7.0"

from . import cli, service
from .api import CameraConfig, Frames, Transect, Velocimetry, Video, get_camera_config, load_camera_config
from .project import *
from .api import CameraConfig, Frames, Transect, Velocimetry, Video, get_camera_config, load_camera_config # noqa
from .project import * # noqa
from . import cli, service # noqa

__all__ = [
"CameraConfig",
Expand Down

0 comments on commit 7552a8e

Please sign in to comment.