Added type information to LABTHINGS_EXTENSIONS

This commit is contained in:
Joel Collins 2020-11-30 17:11:30 +00:00
parent e433a897a4
commit b8354d3e8e

View file

@ -1,8 +1,10 @@
import logging
import traceback
from contextlib import contextmanager
from labthings.extensions import BaseExtension
from typing import List, Type
LABTHINGS_EXTENSIONS = []
LABTHINGS_EXTENSIONS: List[Type[BaseExtension]] = []
@contextmanager