Skip to content

Commit a3b6cbb

Browse files
committed
removed whitespace errors
1 parent cf0a469 commit a3b6cbb

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/arguments/api_test.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,13 @@ def get_request(cls):
1111
request_headers = cls.default_headers
1212
input_url = input('Enter URL: ')
1313
input_headers = input('Enter Headers: ')
14-
1514
if input_url != '':
1615
request_url = input_url
17-
1816
if input_headers != '':
1917
try:
2018
request_headers = json.loads(input_headers)
21-
# If Exception Occurs while Parsing Headers Printing info
2219
except Exception:
2320
print("Failed to parse Input Headers")
24-
25-
2621
# Check whether the request_url has an endpoint or not
2722
has_endpoint = cls.__check_endpoint(request_url)
2823

0 commit comments

Comments
 (0)