import order and spaces

This commit is contained in:
NichtJens
2021-06-01 09:12:25 +02:00
parent 51554eb63d
commit d0deb73522
3 changed files with 8 additions and 7 deletions

View File

@ -1,10 +1,12 @@
from __future__ import annotations
import functools
from typing import TypeVar, Union, List, Type, get_type_hints
from .authmixin import AuthMixin, AuthError, HEADER_JSON
from .httpclient import HttpClient
from .snippet import Snippet, Basesnippet, Paragraph
from typing import TypeVar, Union, List, Type, get_type_hints
import functools
def pinned_to_logbook(logbook_keys):
def pinned_to_logbook_inner(func):
@ -23,6 +25,7 @@ def pinned_to_logbook(logbook_keys):
return pinned_to_logbook_call
return pinned_to_logbook_inner
class SciLogRestAPI(HttpClient):
def __init__(self, url):
super().__init__(url)