Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
judtinzhang committed Apr 22, 2024
1 parent 4574732 commit 5bcc345
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion tests/test_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 5bcc345

Please sign in to comment.