Skip to content

Commit

Permalink
Add type annotation
Browse files Browse the repository at this point in the history
This was found during type review.

Signed-off-by: Alex Nelson <[email protected]>
  • Loading branch information
ajnelson-nist committed Sep 17, 2024
1 parent 5ece281 commit 6a5b2ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def reducestring(string: str) -> str:
return str(string)


def makedirs(directory):
def makedirs(directory: str) -> None:
os.makedirs(f"{directory}", exist_ok=True)


Expand Down

0 comments on commit 6a5b2ca

Please sign in to comment.