Skip to content

Commit

Permalink
refactor: lower case naming for mixins
Browse files Browse the repository at this point in the history
  • Loading branch information
stanvanrooy committed Oct 6, 2020
1 parent f2ba2a9 commit 66312eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion instauto/api/actions/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from ..structs import Method, State, IGProfile, LoggedInAccountData


class AuthenticationMixIn:
class AuthenticationMixin:
"""This class handles everything authentication related."""
_session: Session
state: State
Expand Down
2 changes: 1 addition & 1 deletion instauto/api/actions/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logging.captureWarnings(True)


class RequestMixIn:
class RequestMixin:
ig_profile: IGProfile
device_profile: DeviceProfile
state: State
Expand Down
4 changes: 2 additions & 2 deletions instauto/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
from .exceptions import StateExpired, NoAuthDetailsProvided, CorruptedSaveData

from .actions.profile import ProfileMixin
from .actions.authentication import AuthenticationMixIn
from .actions.authentication import AuthenticationMixin
from .actions.post import PostMixin
from .actions.request import RequestMixIn
from .actions.request import RequestMixin
from .actions.friendships import FriendshipsMixin
from .actions.search import SearchMixin
from .actions.challenge import ChallengeMixin
Expand Down

0 comments on commit 66312eb

Please sign in to comment.