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 master branch #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

sourcery-ai[bot]
Copy link

@sourcery-ai sourcery-ai bot commented Jan 6, 2024

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 mightyhouseinc January 6, 2024 21:32
with open('dist/' + fn, 'rb') as f:
with open(f'dist/{fn}', 'rb') as f:
Copy link
Author

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:

return os.path.getsize('dist/' + fn)
return os.path.getsize(f'dist/{fn}')
Copy link
Author

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:

Comment on lines -49 to +63
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.')
Copy link
Author

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:

print("SHA256 (%s) = %s" % (arg, h.hexdigest()))
print(f"SHA256 ({arg}) = {h.hexdigest()}")
Copy link
Author

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:

Copy link

sweep-ai bot commented Jan 6, 2024

Apply Sweep Rules to your PR?

  • Apply: All new business logic should have corresponding unit tests.
  • Apply: Refactor large functions to be more modular.
  • Apply: Add docstrings to all functions and file headers.

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.

0 participants