-
Notifications
You must be signed in to change notification settings - Fork 0
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 master branch #1
base: master
Are you sure you want to change the base?
Conversation
with open('dist/' + fn, 'rb') as f: | ||
with open(f'dist/{fn}', 'rb') as f: |
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 calc_sha256
refactored with the following changes:
- Use f-string instead of string concatenation (
use-fstring-for-concatenation
)
return os.path.getsize('dist/' + fn) | ||
return os.path.getsize(f'dist/{fn}') |
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 file_size
refactored with the following changes:
- Use f-string instead of string concatenation (
use-fstring-for-concatenation
)
if size == None: | ||
sys.exit('File not found: %s' % (fn,)) | ||
if size is None: | ||
sys.exit(f'File not found: {fn}') | ||
|
||
if size != int(l2t[3]): | ||
sys.exit('File "%s" is incorrect size (expected %d)' % (fn, int(l2t[3]))) | ||
|
||
sha = calc_sha256(fn) | ||
|
||
if sha == None: | ||
sys.exit('File not found: %s' % (fn, )) | ||
if sha is None: | ||
sys.exit(f'File not found: {fn}') | ||
|
||
if sha != l1t[3]: | ||
sys.exit('File "%s" is corrupt!' % (fn, )) | ||
sys.exit(f'File "{fn}" is corrupt!') | ||
|
||
print('File "%s" is ok.' % (fn, )) | ||
print(f'File "{fn}" is ok.') |
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.
Lines 49-63
refactored with the following changes:
- Use x is None rather than x == None [×2] (
none-compare
) - Replace interpolated string formatting with f-string [×4] (
replace-interpolation-with-fstring
)
print("SHA256 (%s) = %s" % (arg, h.hexdigest())) | ||
print(f"SHA256 ({arg}) = {h.hexdigest()}") |
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.
Lines 19-19
refactored with the following changes:
- Replace interpolated string formatting with f-string (
replace-interpolation-with-fstring
)
Apply Sweep Rules to your PR?
|
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:Help us improve this pull request!