-
Notifications
You must be signed in to change notification settings - Fork 1
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 #9
base: master
Are you sure you want to change the base?
Conversation
if '@' in username: | ||
kwargs = {'email': username} | ||
else: | ||
kwargs = {'username': username} | ||
|
||
kwargs = {'email': username} if '@' in username else {'username': username} | ||
try: | ||
user = User.objects.get(**kwargs) | ||
if user.check_password(password): | ||
return user | ||
else: | ||
return None | ||
return user if user.check_password(password) else 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 UserEmailBackend.authenticate
refactored with the following changes:
- Replace if statement with if expression [×2] (
assign-if-exp
)
return 'Order {}'.format(self.id) | ||
return f'Order {self.id}' |
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 Order.__str__
refactored with the following changes:
- Replace call to format with f-string (
use-fstring-for-formatting
)
return '{}'.format(self.id) | ||
return f'{self.id}' |
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 OrderItem.__str__
refactored with the following changes:
- Replace call to format with f-string (
use-fstring-for-formatting
)
user = request.user | ||
if request.method == 'POST': | ||
user = request.user |
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 order_create
refactored with the following changes:
- Hoist repeated code outside conditional statement (
hoist-statement-from-if
)
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!