From: Aditya Srivastava Date: Tue, 24 Mar 2020 07:41:26 +0000 (+0530) Subject: cephfs-shell: Add blank line before & after get_bool_vals_for_boolopts() definition X-Git-Tag: wip-pdonnell-testing-20200918.022351~1489^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=65a0c6d0be934c88c8ab7e028e6fe2bd28eada80;p=ceph-ci.git cephfs-shell: Add blank line before & after get_bool_vals_for_boolopts() definition This patch fixes flake8 error: E302 expected 2 blank lines, found 1 Fixes: https://tracker.ceph.com/issues/44657 Signed-off-by: Aditya Srivastava --- diff --git a/src/tools/cephfs/cephfs-shell b/src/tools/cephfs/cephfs-shell index 9887cfa1568..ce0611edae8 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -1492,6 +1492,7 @@ def setup_cephfs(config_file): print(e) sys.exit(1) + def get_bool_vals_for_boolopts(val): if not isinstance(val, str): return val @@ -1504,6 +1505,7 @@ def get_bool_vals_for_boolopts(val): else: return val + def read_ceph_conf(shell, config_file): try: shell.debug = get_bool_vals_for_boolopts(cephfs.\