Skip to content

Commit

Permalink
Merge branch 'nlsdfnbch-doc-string-fixes' into patches
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Dec 7, 2017
2 parents b748680 + d1596b4 commit 5335bbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cryptop/cryptop.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
KEY_c = 99

def read_configuration(confpath):
"""Read the configuration file at given path."""
# copy our default config file
if not os.path.isfile(confpath):
defaultconf = pkg_resources.resource_filename(__name__, 'config.ini')
Expand Down Expand Up @@ -161,7 +162,7 @@ def read_wallet():


def write_wallet(wallet):
''' Reads the wallet data to its json file '''
''' Write wallet data to its json file '''
with open(DATAFILE, 'w') as f:
json.dump(wallet, f)

Expand Down

0 comments on commit 5335bbe

Please sign in to comment.