Skip to content

Commit

Permalink
Removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Collins committed Apr 7, 2020
1 parent 913a7b4 commit ebaef37
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion labthings/server/default_views/tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from flask import abort, url_for
from flask import abort

from ..decorators import marshal_with, Tag
from ..view import View
Expand Down
2 changes: 1 addition & 1 deletion labthings/server/types/annotations.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .registry import TypeRegistry
from labthings.server import fields

from typing import Dict, List, Tuple, Union
from typing import List, Tuple
from inspect import Parameter
from marshmallow.base import FieldABC

Expand Down
1 change: 0 additions & 1 deletion labthings/server/types/preprocess.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Functions to handle conversion of common Python types into serialisable Python types
from apispec.ext.marshmallow.field_converter import DEFAULT_FIELD_MAPPING
import inspect

from .registry import TypeRegistry
Expand Down
2 changes: 1 addition & 1 deletion labthings/server/types/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from labthings.core.utilities import rapply

from marshmallow.base import FieldABC
from typing import Dict, List, Tuple, Union
from typing import List, Tuple, Union
import copy


Expand Down
2 changes: 1 addition & 1 deletion labthings/server/types/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from marshmallow.base import FieldABC
from datetime import date, datetime, time, timedelta
from decimal import Decimal
from typing import Dict, List, Tuple, Union
from typing import Dict, Tuple
from uuid import UUID
from inspect import _empty

Expand Down

0 comments on commit ebaef37

Please sign in to comment.