Skip to content

Conversation

@sourcery-ai
Copy link

@sourcery-ai sourcery-ai bot commented Mar 22, 2023

Branch master refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the master branch, then run:

git fetch origin sourcery/master
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from Leon0824 March 22, 2023 01:59
Comment on lines -28 to +42
if len(argvs) < 1: raise FileNotFoundError
if not argvs: raise FileNotFoundError

# Extract wildcard to path strings
for path in argvs:
p: Path = Path(path).absolute()
if p.stem == '*':
glob_paths: list[str] = glob(str(p))
for extracted_path in glob_paths:
extracted_argvs.append(extracted_path)
extracted_argvs.extend(iter(glob_paths))
else:
extracted_argvs.append(path)


# Check files existence
for path in extracted_argvs:
if not (Path(path).is_file() and Path(path).exists()): raise FileNotFoundError
if not Path(path).is_file() or not Path(path).exists(): raise FileNotFoundError
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function main refactored with the following changes:

@sourcery-ai
Copy link
Author

sourcery-ai bot commented Mar 22, 2023

Sourcery Code Quality Report

✅  Merging this PR will increase code quality in the affected files by 1.78%.

Quality metrics Before After Change
Complexity 17.89 🙂 15.51 🙂 -2.38 👍
Method Length 100.50 🙂 100.00 🙂 -0.50 👍
Working memory 8.71 🙂 8.71 🙂 0.00
Quality 45.46% 😞 47.24% 😞 1.78% 👍
Other metrics Before After Change
Lines 84 83 -1
Changed files Quality Before Quality After Quality Change
src-python/src/merger.py 45.46% 😞 47.24% 😞 1.78% 👍

Here are some functions in these files that still need a tune-up:

File Function Complexity Length Working Memory Quality Recommendation
src-python/src/merger.py main 20 😞 268 ⛔ 9 🙂 38.59% 😞 Refactor to reduce nesting. Try splitting into smaller methods

Legend and Explanation

The emojis denote the absolute quality of the code:

  • ⭐ excellent
  • 🙂 good
  • 😞 poor
  • ⛔ very poor

The 👍 and 👎 indicate whether the quality has improved or gotten worse with this pull request.


Please see our documentation here for details on how these metrics are calculated.

We are actively working on this report - lots more documentation and extra metrics to come!

Help us improve this quality report!

@ghost
Copy link

ghost commented Mar 22, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant