Skip to content

Commit ebaef37

Browse files
author
Joel Collins
committed
Removed unused imports
1 parent 913a7b4 commit ebaef37

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

labthings/server/default_views/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from flask import abort, url_for
1+
from flask import abort
22

33
from ..decorators import marshal_with, Tag
44
from ..view import View

labthings/server/types/annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .registry import TypeRegistry
22
from labthings.server import fields
33

4-
from typing import Dict, List, Tuple, Union
4+
from typing import List, Tuple
55
from inspect import Parameter
66
from marshmallow.base import FieldABC
77

labthings/server/types/preprocess.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Functions to handle conversion of common Python types into serialisable Python types
2-
from apispec.ext.marshmallow.field_converter import DEFAULT_FIELD_MAPPING
32
import inspect
43

54
from .registry import TypeRegistry

labthings/server/types/properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from labthings.core.utilities import rapply
66

77
from marshmallow.base import FieldABC
8-
from typing import Dict, List, Tuple, Union
8+
from typing import List, Tuple, Union
99
import copy
1010

1111

labthings/server/types/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from marshmallow.base import FieldABC
44
from datetime import date, datetime, time, timedelta
55
from decimal import Decimal
6-
from typing import Dict, List, Tuple, Union
6+
from typing import Dict, Tuple
77
from uuid import UUID
88
from inspect import _empty
99

0 commit comments

Comments
 (0)