Skip to content

Commit

Permalink
minor coding style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
j-kramer committed Sep 29, 2018
1 parent 33aa6f9 commit 97fda09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kanjicolorizer/colorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, character, variant=''):
self.variant = ''
try:
with open(os.path.join(source_directory, self.ascii_filename),
'r', encoding="utf-8") as f:
'r', encoding='utf-8') as f:
self.svg = f.read()
except IOError as e: # file not found
if e.errno == FILE_NOT_FOUND:
Expand Down

0 comments on commit 97fda09

Please sign in to comment.