diff --git a/gto/exceptions.py b/gto/exceptions.py index 4d27738e..29271501 100644 --- a/gto/exceptions.py +++ b/gto/exceptions.py @@ -28,7 +28,7 @@ def __init__(self, path) -> None: class NoFile(GTOException): - _message = "No file/folder found in '{path}' for checkouted commit" + _message = "No file/folder found in '{path}' for checked out commit" def __init__(self, path) -> None: self.message = self._message.format(path=path)