Skip to content

Commit

Permalink
Update exceptions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
milocress committed Sep 19, 2024
1 parent 57cba7e commit c3451ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llmfoundry/utils/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def __init__(self, input_folder: str) -> None:
class InputFolderNotFound(UserError):
"""Error thrown when the a folder is not found."""

def __init__(self, file_that_was_not_found: str) -> None:
def __init__(self, folder_that_was_not_found: str) -> None:
message = f'{folder_that_was_not_found} not found.'
super().__init__(
message,
Expand Down

0 comments on commit c3451ee

Please sign in to comment.