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
from abc import ABC, abstractmethod
from .authclient import AuthMixin, AuthError, HEADER_JSON
from .authmixin import AuthMixin, AuthError, HEADER_JSON
def authenticated(func):
@functools.wraps(func)