Skip to content

Commit

Permalink
fix: add id param to update method of crud
Browse files Browse the repository at this point in the history
  • Loading branch information
HamedAkhavan committed Aug 14, 2022
1 parent 962e354 commit 830dba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py_ocpi/crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async def create(cls, module: ModuleID, data) -> Any:
pass

@classmethod
async def update(cls, module: ModuleID, data) -> Any:
async def update(cls, module: ModuleID, data, id) -> Any:
pass

@classmethod
Expand Down

0 comments on commit 830dba5

Please sign in to comment.