renamed authclient.py -> authmixin.py

This commit is contained in:
NichtJens
2021-06-01 09:07:15 +02:00
parent 84d404ba02
commit 9135bf7fb8
4 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import functools
import json import json
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from .authclient import AuthMixin, AuthError, HEADER_JSON from .authmixin import AuthMixin, AuthError, HEADER_JSON
def authenticated(func): def authenticated(func):
@functools.wraps(func) @functools.wraps(func)

View File

@ -1,4 +1,4 @@
from .authclient import AuthMixin, AuthError, HEADER_JSON from .authmixin import AuthMixin, AuthError, HEADER_JSON
from .utils import post_request, get_request from .utils import post_request, get_request

View File

@ -1,6 +1,6 @@
from __future__ import annotations from __future__ import annotations
from .authclient import AuthMixin, AuthError, HEADER_JSON from .authmixin import AuthMixin, AuthError, HEADER_JSON
from .httpclient import HttpClient from .httpclient import HttpClient
from .snippet import Snippet, Basesnippet, Paragraph from .snippet import Snippet, Basesnippet, Paragraph
from typing import TypeVar, Union, List, Type, get_type_hints from typing import TypeVar, Union, List, Type, get_type_hints