Skip to content

Commit 0900cbd

Browse files
author
Joel Collins
committed
Formatting
1 parent aeba41b commit 0900cbd

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/labthings/schema.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@
1111
from .names import ACTION_ENDPOINT, EXTENSION_LIST_ENDPOINT
1212
from .utilities import description_from_view, view_class_from_endpoint
1313

14-
__all__ = [
15-
"Schema",
16-
"pre_load",
17-
"pre_dump",
18-
"validate",
19-
"FuzzySchemaType"
20-
]
14+
__all__ = ["Schema", "pre_load", "pre_dump", "validate", "FuzzySchemaType"]
2115

2216
# Type alias for a Schema, Field, or Dict of Fields or Types
2317
FuzzySchemaType = Union[Schema, fields.Field, Dict[str, Union[fields.Field, type]]]
18+
19+
2420
class FieldSchema(Schema):
2521
""" "Virtual schema" for handling individual fields treated as schemas.
2622

0 commit comments

Comments
 (0)