Skip to content

Commit c59bf93

Browse files
author
Saimon Michelson
committed
update to pass lint and flake8
1 parent e75ae01 commit c59bf93

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • cterasdk

cterasdk/asynchronous/core/files/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
from ....cio.common import encode_request_parameter
33
from ....cio import core as fs
4-
from ....exceptions.io import ResourceNotFoundError, NotADirectory, ResourceExistsError
4+
from ....exceptions.io import ResourceNotFoundError, ResourceExistsError
55
from .. import query
66

77

cterasdk/exceptions/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, path):
3232

3333
class PathValidationError(RemoteStorageError):
3434

35-
def __init__(self, path=None, **kwargs):
35+
def __init__(self, path=None, **kwargs): # pylint: disable=unused-argument
3636
super().__init__('Path validation failed: the specified destination path does not exist.', path)
3737

3838

0 commit comments

Comments
 (0)