Skip to content

Commit 62e8c52

Browse files
Wrap long method signature to resolve E501 (ruff)
1 parent 2515a9a commit 62e8c52

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

gs/backend/data/data_wrappers/aro_wrapper/aro_user_data_wrapper.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@ def add_user(call_sign: str, email: str, f_name: str, l_name: str, phone_number:
4646

4747

4848
# updates user into database of type AROUser then fetches the user from database
49-
def update_user_by_id(userid: UUID, call_sign: str, email: str, f_name: str, l_name: str, phone_number: str) -> AROUsers:
49+
def update_user_by_id(userid: UUID,
50+
call_sign: str,
51+
email: str,
52+
f_name: str,
53+
l_name: str,
54+
phone_number: str) -> AROUsers:
5055
"""
5156
Update an existing user in the AROUser table in database
5257

0 commit comments

Comments
 (0)