diff --git a/setup.cfg b/setup.cfg index 0160dcd..1bb3bbf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ ignore = E203, W503 [isort] default_section = THIRDPARTY -known_first_party = pennmobile, dining, gsr_booking, user, laundry +known_first_party = src, scripts line_length = 100 lines_after_imports = 2 multi_line_output = 3 diff --git a/tests/test_load.py b/tests/test_load.py index 6657ea9..13eb980 100644 --- a/tests/test_load.py +++ b/tests/test_load.py @@ -55,7 +55,8 @@ def make_request(): def run_threads(): with ThreadPoolExecutor(max_workers=THREADS) as executor: - _ = [executor.submit(make_request) for _ in range(NUMBER_OF_REQUESTS)] + for _ in range(NUMBER_OF_REQUESTS): + executor.submit(make_request) def test_load():