Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fjpacheco committed Jan 27, 2024
1 parent 830ea7b commit 76653fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion app/controller/measurement_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

@withSQLExceptionsHandle
def last_measurement_made_by_plant(req: Request,
id_plant: int):
id_plant: int):
try:
return req.app.database.get_last_measurement(id_plant)
except Exception as err:
Expand Down
1 change: 0 additions & 1 deletion app/router/measurement_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from schemas.measurement import (
MeasurementSavedSchema
)
from fastapi import Request, status
from controller import measurement_controller as controller


Expand Down

0 comments on commit 76653fe

Please sign in to comment.