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

Yet more cleanup (Sourcery refactored) #33

Merged
merged 1 commit into from
Jun 14, 2023

Conversation

sourcery-ai[bot]
Copy link

@sourcery-ai sourcery-ai bot commented Jun 14, 2023

Pull Request #32 refactored by Sourcery.

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

NOTE: As code is pushed to the original Pull Request, Sourcery will
re-run and update (force-push) this Pull Request with new refactorings as
necessary. If Sourcery finds no refactorings at any point, this Pull Request
will be closed automatically.

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 more-cleanup branch, then run:

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

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from kgaughan June 14, 2023 01:02
return "<AttrDict " + dict.__repr__(self) + ">"
return f"<AttrDict {dict.__repr__(self)}>"
Copy link
Author

Choose a reason for hiding this comment

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

Function AttrDict.__repr__ refactored with the following changes:

Comment on lines -924 to -927
try:
with contextlib.suppress(Exception):
obj.close()
except Exception: # pragma: no cover
pass
Copy link
Author

Choose a reason for hiding this comment

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

Function _safe_close refactored with the following changes:

This removes the following comments ( why? ):

# pragma: no cover

Comment on lines -934 to +932
return dict((row[key], row) for row in resultset)
return {row[key]: row for row in resultset}
Copy link
Author

Choose a reason for hiding this comment

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

Function to_dict refactored with the following changes:

Comment on lines -958 to +956
"Param style '%s' does not support sequence type '%s'"
% (param_style, seq.__class__.__name__)
f"Param style '{param_style}' does not support sequence type '{seq.__class__.__name__}'"
Copy link
Author

Choose a reason for hiding this comment

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

Function make_placeholders refactored with the following changes:

Comment on lines -63 to -67
try:
with contextlib.suppress(Exception):
dbkit.context()
self.fail("Should not have been able to access context.")
except Exception:
pass
Copy link
Author

Choose a reason for hiding this comment

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

Function TestBasics.test_context refactored with the following changes:

@kgaughan kgaughan merged commit 22d574e into more-cleanup Jun 14, 2023
@kgaughan kgaughan deleted the sourcery/more-cleanup branch June 14, 2023 01: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

1 participant