glasswall.determine_file_type.classes
1class FileTypeEnum: 2 """ Base class for all file type enumerations. """ 3 pass 4 5 6class FileTypeEnumError(FileTypeEnum, Exception): 7 """ Enumerations that correspond to an error. """ 8 pass 9 10 11class FileTypeEnumSuccess(FileTypeEnum): 12 """ Enumerations that correspond to a file type. """ 13 pass
class
FileTypeEnum:
Base class for all file type enumerations.
9class FileTypeEnumError(FileTypeEnum, Exception): 10 """ Enumerations that correspond to an error. """ 11 pass
Enumerations that correspond to an error.
14class FileTypeEnumSuccess(FileTypeEnum): 15 """ Enumerations that correspond to a file type. """ 16 pass
Enumerations that correspond to a file type.