-
-
Notifications
You must be signed in to change notification settings - Fork 10
Sourcery Starbot ⭐ refactored jefftriplett/kindlestrip #5
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
base: main
Are you sure you want to change the base?
Conversation
if argvencoding == None: | ||
if argvencoding is None: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function utf8_argv
refactored with the following changes:
- Use x is None rather than x == None (
none-compare
)
dout=[] | ||
dout.append(datain[:off]) | ||
dout.append(new) | ||
dout.append(datain[off+len(new):]) | ||
dout = [datain[:off], new, datain[off+len(new):]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function patchdata
refactored with the following changes:
- Merge append into list declaration (
merge-list-append
)
dout=[] | ||
dout.append(datain) | ||
dout.append(new) | ||
dout = [datain, new] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function joindata
refactored with the following changes:
- Merge append into list declaration (
merge-list-append
)
Sourcery Code Quality Report✅ Merging this PR will increase code quality in the affected files by 0.47%.
Here are some functions in these files that still need a tune-up:
Legend and ExplanationThe emojis denote the absolute quality of the code:
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! Let us know what you think of it by mentioning @sourcery-ai in a comment. |
Thanks for starring sourcery-ai/sourcery ✨ 🌟 ✨
Here's your pull request refactoring your most popular Python repo.
If you want Sourcery to refactor all your Python repos and incoming pull requests install our bot.
Review changes via command line
To manually merge these changes, make sure you're on the
master
branch, then run: