renamed authclient.py -> authmixin.py
This commit is contained in:
@ -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)
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Reference in New Issue
Block a user