You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Many local variables have names like MyVariable or sth like that, but the naming conventions of python say: my_variable
Most of the functions and methods also are not named like this: def my_function_is_great()
To Reproduce
for example GenericTelemetry.py line 59
a method example: GenericTelemetry.py line 53
Expected behavior
A clear and concise description of what you expected to happen.
Describe the bug
Many local variables have names like
MyVariable
or sth like that, but the naming conventions of python say:my_variable
Most of the functions and methods also are not named like this:
def my_function_is_great()
To Reproduce
Expected behavior
A clear and concise description of what you expected to happen.
Code snips
def displayTelemetryItem(self, datagram, tlmIndex, labelField, valueField):
TlmField1 = tlmItemFormat[tlmIndex]
Additional context
https://www.python.org/dev/peps/pep-0008/
The text was updated successfully, but these errors were encountered: