We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e75ae01 commit c59bf93Copy full SHA for c59bf93
2 files changed
cterasdk/asynchronous/core/files/io.py
@@ -1,7 +1,7 @@
1
import logging
2
from ....cio.common import encode_request_parameter
3
from ....cio import core as fs
4
-from ....exceptions.io import ResourceNotFoundError, NotADirectory, ResourceExistsError
+from ....exceptions.io import ResourceNotFoundError, ResourceExistsError
5
from .. import query
6
7
cterasdk/exceptions/io.py
@@ -32,7 +32,7 @@ def __init__(self, path):
32
33
class PathValidationError(RemoteStorageError):
34
35
- def __init__(self, path=None, **kwargs):
+ def __init__(self, path=None, **kwargs): # pylint: disable=unused-argument
36
super().__init__('Path validation failed: the specified destination path does not exist.', path)
37
38
0 commit comments