Skip to content

Commit 4256b84

Browse files
committed
pass flake8
1 parent c7be31c commit 4256b84

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

cterasdk/asynchronous/core/files/browser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ async def download_many(self, target, objects, destination=None):
4949
The provided list of objects is not validated. Only existing files and directories
5050
will be included in the resulting ZIP file.
5151
52-
:param str target:
52+
:param str target:
5353
Path to the cloud folder containing the files and directories to download.
54-
:param list[str] objects:
54+
:param list[str] objects:
5555
List of file and/or directory names to include in the download.
56-
:param str destination:
56+
:param str destination:
5757
Optional. Path to the destination file or directory. If a directory is provided,
5858
the original filename will be preserved. Defaults to the default download directory.
5959
"""

cterasdk/core/files/browser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ def download_many(self, target, objects, destination=None):
5353
The provided list of objects is not validated. Only existing files and directories
5454
will be included in the resulting ZIP file.
5555
56-
:param str target:
56+
:param str target:
5757
Path to the cloud folder containing the files and directories to download.
58-
:param list[str] objects:
58+
:param list[str] objects:
5959
List of file and/or directory names to include in the download.
60-
:param str destination:
60+
:param str destination:
6161
Optional. Path to the destination file or directory. If a directory is provided,
6262
the original filename will be preserved. Defaults to the default download directory.
6363
"""

cterasdk/edge/files/browser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ def download_many(self, target, objects, destination=None):
5757
The provided list of objects is not validated. Only existing files and directories
5858
will be included in the resulting ZIP file.
5959
60-
:param str target:
60+
:param str target:
6161
Path to the cloud folder containing the files and directories to download.
62-
:param list[str] objects:
62+
:param list[str] objects:
6363
List of file and/or directory names to include in the download.
64-
:param str destination:
64+
:param str destination:
6565
Optional. Path to the destination file or directory. If a directory is provided,
6666
the original filename will be preserved. Defaults to the default download directory.
6767
"""

cterasdk/lib/storage/asynfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ async def overwrite(p, handle):
3434
async for chunk in handle.async_iter_content(chunk_size=8192):
3535
await fd.write(chunk)
3636
logger.debug('Wrote: %s', p.as_posix())
37-
return p.as_posix()
37+
return p.as_posix()

cterasdk/lib/storage/commonfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,4 +245,4 @@ def determine_directory_and_filename(p, objects=None, destination=None, archive=
245245
name = determine_zip_archive_name(p, objects)
246246
else:
247247
name = normalized.name
248-
return directory, name
248+
return directory, name

cterasdk/lib/storage/synfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
2-
from .commonfs import write_new_version, join
2+
from .commonfs import write_new_version
33

44

55
logger = logging.getLogger('cterasdk.filesystem')

0 commit comments

Comments
 (0)