diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-10 23:40:53 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-11 21:14:20 +0200 |
commit | 0ce5d0b21bd36cef209d7574e2ef5215df3ceca6 (patch) | |
tree | dc8ed359117720163983330b78cb1568407f50c8 /stdnum/numdb.py | |
parent | e468c1beae5cdacbb05540e39a5924bbc7acc09f (diff) |
Minor code improvements (mostly PEP8)
Diffstat (limited to 'stdnum/numdb.py')
-rw-r--r-- | stdnum/numdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdnum/numdb.py b/stdnum/numdb.py index 40ebdb4..2b1a6e9 100644 --- a/stdnum/numdb.py +++ b/stdnum/numdb.py @@ -203,5 +203,5 @@ def get(name): import codecs reader = codecs.getreader('utf-8') with reader(resource_stream(__name__, name + '.dat')) as fp: - _open_databases[name] = db = read(fp) + _open_databases[name] = read(fp) return _open_databases[name] |