Skip to content

Commit

Permalink
fix mixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tobykurien committed Oct 22, 2015
1 parent b937bbe commit 5c88419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/piscope.py
Expand Up @@ -9,8 +9,8 @@ def read_config(filepath):
config = {}
with codecs.open('config.yml', 'r', encoding='utf8') as f:
yml_dict = yaml.safe_load(f)
for k in yml_dict:
config[k] = yml_dict[k]
for k in yml_dict:
config[k] = yml_dict[k]

return config

Expand Down

0 comments on commit 5c88419

Please sign in to comment.