Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sourcery refactored main branch #4

Merged
merged 4 commits into from Oct 22, 2021
Merged

Sourcery refactored main branch #4

merged 4 commits into from Oct 22, 2021

Conversation

sourcery-ai[bot]
Copy link
Contributor

@sourcery-ai sourcery-ai bot commented Oct 21, 2021

Branch main 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 main branch, then run:

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

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from adbar October 21, 2021 15:42
simplemma/rules.py Outdated Show resolved Hide resolved
leftlimit = 2
if langcode in SAFE_LIMIT:
leftlimit = 1
leftlimit = 1 if langcode in SAFE_LIMIT else 2
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function _load_dict refactored with the following changes:

simplemma/simplemma.py Show resolved Hide resolved
Comment on lines 187 to 190
# even greedier
else:
# with capital letter
#print(part1, part2, affixlen, count, newcandidate)
if len(lempart2) < len(part2) + AFFIXLEN:
plan_b = ''.join([part1, lempart2.lower()])
#print(part1, part2, affixlen, count, newcandidate, planb)
elif newcandidate and len(newcandidate) < len(part2) + AFFIXLEN:
plan_b = ''.join([part1, newcandidate.lower()])
#print(part1, part2, affixlen, count, newcandidate, planb)
elif len(lempart2) < len(part2) + AFFIXLEN:
plan_b = ''.join([part1, lempart2.lower()])
#print(part1, part2, affixlen, count, newcandidate, planb)
elif newcandidate and len(newcandidate) < len(part2) + AFFIXLEN:
plan_b = ''.join([part1, newcandidate.lower()])
#print(part1, part2, affixlen, count, newcandidate, planb)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function _decompose refactored with the following changes:

This removes the following comments ( why? ):

# with capital letter
#print(part1, part2, affixlen, count, newcandidate)
# even greedier

simplemma/simplemma.py Show resolved Hide resolved
Comment on lines 286 to 282
for language in langdata:
if _simple_search(token, language[1]) is not None:
return True
return False
return any(
_simple_search(token, language[1]) is not None for language in langdata
)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function is_known refactored with the following changes:

  • Use any() instead of for loop (use-any)

simplemma/simplemma.py Show resolved Hide resolved
@codecov-commenter
Copy link

codecov-commenter commented Oct 21, 2021

Codecov Report

Merging #4 (7f9445a) into main (c70cfef) will decrease coverage by 0.10%.
The diff coverage is 82.35%.

Impacted file tree graph

@@            Coverage Diff             @@
##             main       #4      +/-   ##
==========================================
- Coverage   92.63%   92.52%   -0.11%     
==========================================
  Files           4        4              
  Lines         285      281       -4     
==========================================
- Hits          264      260       -4     
  Misses         21       21              
Impacted Files Coverage Δ
simplemma/simplemma.py 90.23% <82.35%> (-0.18%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update c70cfef...7f9445a. Read the comment docs.

@adbar
Copy link
Owner

adbar commented Oct 21, 2021

TODO: to review after tests have been added.

@sourcery-ai
Copy link
Contributor Author

sourcery-ai bot commented Oct 22, 2021

Sourcery Code Quality Report

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

Quality metrics Before After Change
Complexity 14.21 🙂 13.76 🙂 -0.45 👍
Method Length 71.75 🙂 71.50 🙂 -0.25 👍
Working memory 10.00 😞 9.96 😞 -0.04 👍
Quality 59.21% 🙂 59.64% 🙂 0.43% 👍
Other metrics Before After Change
Lines 310 308 -2
Changed files Quality Before Quality After Quality Change
simplemma/simplemma.py 59.21% 🙂 59.64% 🙂 0.43% 👍

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

File Function Complexity Length Working Memory Quality Recommendation
simplemma/simplemma.py _decompose 43 ⛔ 237 ⛔ 16 ⛔ 18.34% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
simplemma/simplemma.py _read_dict 22 😞 239 ⛔ 19 ⛔ 24.97% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
simplemma/simplemma.py _dehyphen 13 🙂 113 🙂 12 😞 51.26% 🙂 Extract out complex expressions

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!

@adbar adbar merged commit c4d0f3f into main Oct 22, 2021
@adbar adbar deleted the sourcery/main branch October 22, 2021 14:03
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.

None yet

2 participants