Skip to content

Commit

Permalink
Fix: Import from trakt.core to avoid import loop errors (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc authored Jan 31, 2025
2 parents 23b79f3 + 8a2b9ae commit 4d5ae04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trakt/auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

__author__ = 'Jon Nappi, Elan Ruusamäe'

from trakt import DEVICE_AUTH, OAUTH_AUTH, PIN_AUTH, api
from trakt import config as config_factory
from trakt.config import AuthConfig
from trakt.core import DEVICE_AUTH, OAUTH_AUTH, PIN_AUTH, api
from trakt.core import config as config_factory


def pin_auth(*args, config, **kwargs):
Expand Down

0 comments on commit 4d5ae04

Please sign in to comment.