We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
An idea but it would be nice to rename some of the counters and variables!
We have a lot of intermixing between actions and decisions going on.
actions
decisions
Example:
# Increment total actions count, Unblock, stop_receiving etc. self.actions[decision_name] += 1 # increment count for this decision - single_off, single_on etc. self.decisions[kwargs.get("mode")] += 1
It would make more sense (IMO) to be updating self.decisions with decision_name and not mode.
self.decisions
decision_name
mode
Would be nice to work through these and standardise the names used in Counters
Counters
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An idea but it would be nice to rename some of the counters and variables!
We have a lot of intermixing between
actions
anddecisions
going on.Example:
It would make more sense (IMO) to be updating
self.decisions
withdecision_name
and notmode
.Would be nice to work through these and standardise the names used in
Counters
The text was updated successfully, but these errors were encountered: