Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Nov 3, 2022
1 parent e10774c commit f45188b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_whitenoise.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def test_no_error_on_very_long_filename(server):
assert response.status_code != 500


def copytree(src, dst):
def copytree(src: str, dst: str) -> None:
for name in os.listdir(src):
src_path = os.path.join(src, name)
dst_path = os.path.join(dst, name)
Expand Down

0 comments on commit f45188b

Please sign in to comment.