We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76bbf0b commit 73dd86aCopy full SHA for 73dd86a
libqfieldsync/project_checker.py
@@ -295,11 +295,11 @@ def check_project_is_dirty(self) -> Optional[FeedbackResult]:
295
return None
296
297
def check_for_conflicting_base_filenames(self) -> Optional[FeedbackResult]:
298
- conflicting_files: List[Path] = []
+ conflicting_files: list[Path] = []
299
300
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
+ project_home_path = project_file_path.parent
+ project_base_name = project_file_path.stem
303
304
for item in project_home_path.rglob("*"):
305
if (
0 commit comments