Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuradobery committed Sep 26, 2024
1 parent a306c57 commit ee0ada5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cloud/filestore/tests/python/lib/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ def create(
return_stdout=True,
):
cmd = [
self.__binary_path, "create",
"--filesystem", fs,
"--cloud", cloud,
"--folder", folder,
"--block-size", str(blk_size),
"--blocks-count", str(blk_count)
] + self.__cmd_opts()
self.__binary_path, "create",
"--filesystem", fs,
"--cloud", cloud,
"--folder", folder,
"--block-size", str(blk_size),
"--blocks-count", str(blk_count)
] + self.__cmd_opts()

logger.info("creating nfs: " + " ".join(cmd))
result = common.execute(cmd, env=self.__env, check_exit_code=self.__check_exit_code)
Expand Down

0 comments on commit ee0ada5

Please sign in to comment.