Lint: E305 expected 2 blank lines after class or function definition, found X

This commit is contained in:
2020-11-07 13:17:49 -05:00
parent e553c5d42a
commit 961ebb4c01
7 changed files with 146 additions and 1 deletions

View File

@ -127,6 +127,7 @@ def update_store(store_path, store_data):
with open(store_file, 'w') as fh:
fh.write(json.dumps(store_data, sort_keys=True, indent=4))
pvc_client_dir = os.environ.get('PVC_CLIENT_DIR', None)
home_dir = os.environ.get('HOME', None)
if pvc_client_dir:
@ -3669,6 +3670,7 @@ def cli(_cluster, _debug, _quiet):
)
click.echo('', err=True)
config = dict()
#
@ -3833,5 +3835,6 @@ cli.add_command(init_cluster)
def main():
return cli(obj={})
if __name__ == '__main__':
main()