First round of CI codestyle fixes

This commit is contained in:
ChrisTerBeke 2019-08-02 15:26:24 +02:00
parent 1fa5628cb2
commit e7fdd02b6f
5 changed files with 12 additions and 10 deletions

View file

@ -32,7 +32,7 @@ class MeshFormatHandler:
# \return A dict with the file format details, with the following keys:
# {id: str, extension: str, description: str, mime_type: str, mode: int, hide_in_file_dialog: bool}
@property
def preferred_format(self) -> Optional[Dict[str, Union[str, int, bool]]]:
def preferred_format(self) -> Dict[str, Union[str, int, bool]]:
return self._preferred_format
## Gets the file writer for the given file handler and mime type.