diff --git a/bin/ffx/file_properties.py b/bin/ffx/file_properties.py index e3dae06..8106d08 100644 --- a/bin/ffx/file_properties.py +++ b/bin/ffx/file_properties.py @@ -186,10 +186,10 @@ class FileProperties(): return self.__pattern - def getSeason(self): + def getSeason(self) -> int: return int(self.__season) - def getEpisode(self): + def getEpisode(self) -> int: return int(self.__episode)