fix whitespaces according to flake8

This commit is contained in:
Semjon Kerner 2021-05-09 11:09:26 +02:00
parent 3172b30d98
commit 1c5530dca4
16 changed files with 52 additions and 54 deletions

View File

@ -114,4 +114,3 @@ class Calibrator:
def calibrate(self):
self._walk_calibrate()
self._rotate_calibrate()

View File

@ -68,4 +68,3 @@ class Recorder:
pickle.dump(data, file)
file.close()
FullAuto.state = State.NONE

View File

@ -92,4 +92,3 @@ if __name__ == '__main__':
# noinspection PyTypeChecker
fisher = SemiFisherEngine(None)
fisher.toggle_start()

View File

@ -16,6 +16,7 @@ class State(Enum):
FIGHT = 14
DEAD = 15
Colors = {
State.IDLE : [255, 255, 255],
State.LOOKAWAY : [ 76, 0, 76],

View File

@ -76,6 +76,7 @@ def _get_current_version():
index = "https://pypi.python.org/simple"
pkg = "fishy"
def versions():
return _hr_version(_get_current_version()), _hr_version(_get_highest_version(index, pkg))

View File

@ -77,4 +77,3 @@ def sv_color_extract(Colors):
for i, c in enumerate(Colors):
Colors[c] = colors[i]
return Colors