Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

Commit

Permalink
style: revert back to black-style imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LimaoC committed Oct 10, 2024
1 parent f7d826c commit aa18f0b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
11 changes: 7 additions & 4 deletions client/drivers/login_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@

import numpy as np
from data.routines import create_user, next_user_id
from drivers.data_structures import (DOUBLE_RIGHT_BUTTON, LEFT_BUTTON,
RIGHT_BUTTON, HardwareComponents)
from models.face_recognition.recognition import (Status, get_face_match,
register_faces)
from drivers.data_structures import (
HardwareComponents,
LEFT_BUTTON,
RIGHT_BUTTON,
DOUBLE_RIGHT_BUTTON,
)
from models.face_recognition.recognition import Status, get_face_match, register_faces
from models.pose_detection.frame_capturer import RaspCapturer

NUM_FACES = 5
Expand Down
9 changes: 7 additions & 2 deletions client/drivers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@
from datetime import datetime, timedelta

import RPi.GPIO as GPIO
from data.routines import (Posture, destroy_database, get_user_postures,
init_database, reset_registered_face_embeddings)
from data.routines import (
init_database,
destroy_database,
reset_registered_face_embeddings,
get_user_postures,
Posture,
)
from drivers.data_structures import ControlledData, HardwareComponents
from drivers.login_system import RESET, handle_authentication
from models.pose_detection.frame_capturer import RaspCapturer
Expand Down

0 comments on commit aa18f0b

Please sign in to comment.