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

Polish attendance index (Sourcery refactored) #501

Closed
wants to merge 10 commits into from

Conversation

sourcery-ai[bot]
Copy link
Contributor

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

Pull Request #500 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 polish-attendance-index branch, then run:

git fetch origin sourcery/polish-attendance-index
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from janpeterka June 23, 2023 14:24
@sourcery-ai sourcery-ai bot force-pushed the sourcery/polish-attendance-index branch from 6020827 to bb1abd9 Compare June 23, 2023 14:53
@sourcery-ai sourcery-ai bot force-pushed the sourcery/polish-attendance-index branch from bb1abd9 to 3e1c1b6 Compare June 23, 2023 15:01
Comment on lines -43 to +47
if int(formatted_amount) == formatted_amount:
return int(formatted_amount)
else:
return formatted_amount
return (
int(formatted_amount)
if int(formatted_amount) == formatted_amount
else formatted_amount
)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function formatted_amount refactored with the following changes:

Comment on lines 105 to 108
relative_portion_count = 0

# count portions of attendees with their portion size
for attendee in self.attendees:
relative_portion_count += getattr(attendee.portion_type, "size", 1)

relative_portion_count = sum(
getattr(attendee.portion_type, "size", 1)
for attendee in self.attendees
)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function Event.relative_portion_count refactored with the following changes:

This removes the following comments ( why? ):

# count portions of attendees with their portion size

for i, recipe in enumerate(daily_recipes):
if recipe.is_shopping:
shopping_indexes.append(i)

shopping_indexes.extend(
i for i, recipe in enumerate(daily_recipes) if recipe.is_shopping
)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function Event.daily_recipes_split_by_shopping refactored with the following changes:

Comment on lines -211 to +208
return sum([t.count for t in self.event_portion_types])
return sum(t.count for t in self.event_portion_types)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function Event.people_with_any_portion_type_count refactored with the following changes:

Base automatically changed from polish-attendance-index to production June 23, 2023 16:17
@sourcery-ai sourcery-ai bot closed this Jun 23, 2023
@sourcery-ai sourcery-ai bot deleted the sourcery/polish-attendance-index branch June 23, 2023 16:17
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.

1 participant