Skip to content

Commit 73dd86a

Browse files
committed
Adressing suggestion of typing
1 parent 76bbf0b commit 73dd86a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libqfieldsync/project_checker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,11 @@ def check_project_is_dirty(self) -> Optional[FeedbackResult]:
295295
return None
296296

297297
def check_for_conflicting_base_filenames(self) -> Optional[FeedbackResult]:
298-
conflicting_files: List[Path] = []
298+
conflicting_files: list[Path] = []
299299

300300
project_file_path = Path(self.project.fileName())
301-
project_home_path: Path = project_file_path.parent
302-
project_base_name: str = project_file_path.stem
301+
project_home_path = project_file_path.parent
302+
project_base_name = project_file_path.stem
303303

304304
for item in project_home_path.rglob("*"):
305305
if (

0 commit comments

Comments
 (0)