This commit is contained in:
Jesse Bannon 2023-03-10 10:16:30 -08:00
parent cf3e63d723
commit 7c073be873

View file

@ -81,6 +81,7 @@ class FilePathValidatorMixin:
return str(file_path) return str(file_path)
# pylint: disable=line-too-long
class StringFormatterFileNameValidator(StringFormatterValidator, FilePathValidatorMixin): class StringFormatterFileNameValidator(StringFormatterValidator, FilePathValidatorMixin):
""" """
Same as a Same as a
@ -89,6 +90,8 @@ class StringFormatterFileNameValidator(StringFormatterValidator, FilePathValidat
it will preserve the extension and truncate the end of the file name. it will preserve the extension and truncate the end of the file name.
""" """
# pylint: enable=line-too-long
_expected_value_type_name = "filepath" _expected_value_type_name = "filepath"
@classmethod @classmethod