Lint: E111 indentation is not a multiple of four

This commit is contained in:
2020-11-06 19:26:22 -05:00
parent 2d8f684fc8
commit fb4aafcea9
4 changed files with 7 additions and 7 deletions

View File

@ -113,7 +113,7 @@ def get_config(store_data, cluster=None):
def get_store(store_path):
store_file = '{}/pvc-cli.json'.format(store_path)
with open(store_file, 'r') as fh:
store_data = json.loads(fh.read())
store_data = json.loads(fh.read())
return store_data
def update_store(store_path, store_data):