import order and spaces
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user