Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DarwinsBuddy committed Jan 21, 2024
1 parent 0914e52 commit 933548a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion foosball/sink/opencv.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, config: CalibrationConfig, *args, **kwargs):
self.init_config: CalibrationConfig = deepcopy(config)

def reset(self):
print(f"Reset calibration config", end="\n\n\n")
print("Reset calibration config", end="\n\n\n")
self.set_slider_config(self.init_config)

@abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion foosball/tracking/ai.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .render import r_text, BLACK
from ..detectors.color import GoalColorConfig, BallColorDetector, BallColorConfig, GoalColorDetector
from ..models import FrameDimensions, Frame, InfoLog, Verbosity
from ..sink.opencv import DisplaySink, Key, BallColorCalibration, GoalColorCalibration, CalibrationConfig
from ..sink.opencv import DisplaySink, Key, BallColorCalibration, GoalColorCalibration
from ..source import Source

BLANKS = (' ' * 80)
Expand Down

0 comments on commit 933548a

Please sign in to comment.