Added type information to LABTHINGS_EXTENSIONS
This commit is contained in:
parent
e433a897a4
commit
b8354d3e8e
1 changed files with 3 additions and 1 deletions
|
|
@ -1,8 +1,10 @@
|
||||||
import logging
|
import logging
|
||||||
import traceback
|
import traceback
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
|
from labthings.extensions import BaseExtension
|
||||||
|
from typing import List, Type
|
||||||
|
|
||||||
LABTHINGS_EXTENSIONS = []
|
LABTHINGS_EXTENSIONS: List[Type[BaseExtension]] = []
|
||||||
|
|
||||||
|
|
||||||
@contextmanager
|
@contextmanager
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue