Format fixes from black
This commit is contained in:
parent
9dbb083ee7
commit
106b50d333
13 changed files with 101 additions and 32 deletions
|
|
@ -578,7 +578,9 @@ class ScanExtension(BaseExtension):
|
|||
|
||||
|
||||
class TileScanArgs(FullCaptureArgs):
|
||||
namemode = fields.String(load_default="coordinates", metadata={"example": "coordinates"})
|
||||
namemode = fields.String(
|
||||
load_default="coordinates", metadata={"example": "coordinates"}
|
||||
)
|
||||
grid = fields.List(
|
||||
fields.Integer(validate=marshmallow.validate.Range(min=1)),
|
||||
load_default=[3, 3, 3],
|
||||
|
|
@ -588,7 +590,9 @@ class TileScanArgs(FullCaptureArgs):
|
|||
autofocus_dz = fields.Integer(load_default=50)
|
||||
fast_autofocus = fields.Boolean(load_default=False)
|
||||
stride_size = fields.List(
|
||||
fields.Integer, load_default=[2000, 1500, 100], metadata={"example":[2000, 1500, 100]}
|
||||
fields.Integer,
|
||||
load_default=[2000, 1500, 100],
|
||||
metadata={"example": [2000, 1500, 100]},
|
||||
)
|
||||
detect_empty_fields_and_skip_autofocus = fields.Boolean(load_default=False)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue