Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/murfey/client/analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
valid_extension = self._find_extension(transferred_file)
if not valid_extension:
logger.error(f"No extension found for {transferred_file}")
break
continue

Check warning on line 256 in src/murfey/client/analyser.py

View check run for this annotation

Codecov / codecov/patch

src/murfey/client/analyser.py#L256

Added line #L256 was not covered by tests
found = self._find_context(transferred_file)
if not found:
logger.debug(
Expand Down Expand Up @@ -324,7 +324,7 @@
valid_extension = self._find_extension(transferred_file)
if not valid_extension:
logger.error(f"No extension found for {transferred_file}")
break
continue

Check warning on line 327 in src/murfey/client/analyser.py

View check run for this annotation

Codecov / codecov/patch

src/murfey/client/analyser.py#L327

Added line #L327 was not covered by tests
if self._extension:
logger.info(
f"Extension found successfully for {transferred_file}"
Expand Down