mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-24 10:34:17 +00:00
Codestyle
This commit is contained in:
parent
cdb352f14a
commit
283fbca969
@ -30,9 +30,8 @@ class AddNLPJobForm(FlaskForm):
|
|||||||
def validate_files(form, field):
|
def validate_files(form, field):
|
||||||
for file in field.data:
|
for file in field.data:
|
||||||
if not file.filename.lower().endswith('.txt'):
|
if not file.filename.lower().endswith('.txt'):
|
||||||
raise ValidationError(
|
raise ValidationError('File does not have an approved '
|
||||||
'File does not have an approved extension: .txt'
|
'extension: .txt')
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class AddOCRJobForm(FlaskForm):
|
class AddOCRJobForm(FlaskForm):
|
||||||
@ -62,10 +61,8 @@ class AddOCRJobForm(FlaskForm):
|
|||||||
def validate_files(form, field):
|
def validate_files(form, field):
|
||||||
for file in field.data:
|
for file in field.data:
|
||||||
if not file.filename.lower().endswith(('.pdf', '.tif', '.tiff')):
|
if not file.filename.lower().endswith(('.pdf', '.tif', '.tiff')):
|
||||||
raise ValidationError(
|
raise ValidationError('File does not have an approved '
|
||||||
'File does not have an approved extension: '
|
'extension: .pdf | .tif | .tiff')
|
||||||
'.pdf | .tif | .tiff'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class AddSetupFilesJobForm(FlaskForm):
|
class AddSetupFilesJobForm(FlaskForm):
|
||||||
@ -82,7 +79,6 @@ class AddSetupFilesJobForm(FlaskForm):
|
|||||||
for file in field.data:
|
for file in field.data:
|
||||||
if not file.filename.lower().endswith(('.jpeg', '.jpg', '.png',
|
if not file.filename.lower().endswith(('.jpeg', '.jpg', '.png',
|
||||||
'.tiff', '.tif')):
|
'.tiff', '.tif')):
|
||||||
raise ValidationError(
|
raise ValidationError('File does not have an approved '
|
||||||
'File does not have an approved extension: '
|
'extension: .jpeg | .jpg | .png | .tiff '
|
||||||
'.jpeg | .jpg | .png | .tiff | .tif'
|
'| .tif')
|
||||||
)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user