Skip to content

Commit

Permalink
Merge pull request #20 from nwithan8/develop
Browse files Browse the repository at this point in the history
Fix module import issues
  • Loading branch information
nwithan8 authored Aug 31, 2022
2 parents 61ccd9f + 8beac2f commit e40a87a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tautulli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from tautulli.api.json_api import RawAPI
from tautulli.api.object_api import ObjectAPI
from tautulli.api import ObjectAPI
from tautulli.api import RawAPI
2 changes: 2 additions & 0 deletions tautulli/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from tautulli.api.json_api import RawAPI
from tautulli.api.object_api import ObjectAPI
Empty file added tautulli/internal/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion tautulli/models/activity_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from pydantic import BaseModel

from tautulli.internal import static, utils as internal_utils
from tautulli.internal import utils as internal_utils, static
from tautulli.tools.utils import to_human_bitrate


Expand Down

0 comments on commit e40a87a

Please sign in to comment.