Skip to content

Commit 4ddc120

Browse files
author
Joel Collins
committed
Tidied imports
1 parent 6e8b47e commit 4ddc120

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/labthings/views/__init__.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import datetime
22
from collections import OrderedDict
3-
from typing import Union, Dict, List, Optional, Set
3+
from typing import Dict, List, Optional, Set
44

55
from flask import request
66
from flask.views import MethodView
@@ -11,8 +11,12 @@
1111
from ..find import current_labthing, find_extension
1212
from ..marshalling import marshal_with, use_args
1313
from ..representations import DEFAULT_REPRESENTATIONS
14-
from ..schema import ActionSchema, EventSchema, Schema, FuzzySchemaType, build_action_schema
15-
from ..fields import Field
14+
from ..schema import (
15+
ActionSchema,
16+
EventSchema,
17+
FuzzySchemaType,
18+
build_action_schema,
19+
)
1620
from ..utilities import unpack
1721
from . import builder, op
1822

0 commit comments

Comments
 (0)