Skip to content

Commit

Permalink
Remove isort error on GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
gshiva committed Dec 18, 2023
1 parent 3ca5e93 commit 626275e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/pygptcourse/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

import cv2

# isort: off

from pygptcourse.camera_control import CameraControl
from pygptcourse.camera_manager import CameraManager
from pygptcourse.face_detector import FaceDetector

# isort: on

# the above is required because the local isort adds a new line while default GHA (Github Actions)
# adds a new line

parser = argparse.ArgumentParser(description="Run the camera control system.")
parser.add_argument("--simulate", action="store_true", help="Run in simulation mode.")
args = parser.parse_args()
Expand Down

0 comments on commit 626275e

Please sign in to comment.