From fcf4ce74cc2240787d25b4731b04aef75eeb1f0d Mon Sep 17 00:00:00 2001 From: Sergei Date: Thu, 26 Sep 2024 14:27:35 +0000 Subject: [PATCH] Fix flake8 --- cloud/filestore/tests/python/lib/client.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cloud/filestore/tests/python/lib/client.py b/cloud/filestore/tests/python/lib/client.py index 32fef33ea0..ef10e4d768 100644 --- a/cloud/filestore/tests/python/lib/client.py +++ b/cloud/filestore/tests/python/lib/client.py @@ -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)