Skip to content

Commit cf0a469

Browse files
committed
fix for unused exception var issue
1 parent fd8bc08 commit cf0a469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arguments/api_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def get_request(cls):
1919
try:
2020
request_headers = json.loads(input_headers)
2121
# If Exception Occurs while Parsing Headers Printing info
22-
except Exception as ex:
22+
except Exception:
2323
print("Failed to parse Input Headers")
2424

2525

0 commit comments

Comments
 (0)