Adjust type hinting

This commit is contained in:
Mykola Grymalyuk
2024-04-01 19:50:28 -06:00
parent 5e2278860d
commit c19c6aa575
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ class ParseCommitInfo:
self.plist_path = self._convert_binary_path_to_plist_path()
def _convert_binary_path_to_plist_path(self) -> str or None:
def _convert_binary_path_to_plist_path(self) -> str:
"""
Resolve Info.plist path from binary path
"""

View File

@@ -30,7 +30,7 @@ class GlobalEnviromentSettings:
self._fix_file_permission()
def read_property(self, property_name: str) -> str or None:
def read_property(self, property_name: str) -> str:
"""
Reads a property from the global settings file
"""