-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Minor fixes and added updates to Configuration file #4396
Changes from 5 commits
b7976fa
123a914
83aabf7
98a7a59
afa743c
4c84b7a
b71ba79
b7857f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ def work(self): | |
data={ | ||
'km_needed': self.used_incubators[0]['km_needed'], | ||
'distance_in_km': km_left, | ||
'eggs': len(self.eggs), | ||
'eggs': len(self.eggs) + len(self.used_incubators), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems like since we are already sending the length of the used incubators, we want to keep the number of eggs separate from the number of incubated eggs. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, so should it show the word 'Total'? |
||
'eggs_inc': len(self.used_incubators) | ||
} | ||
) | ||
|
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.
Why ?
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.
Oh, my bad.