Skip to content

Commit

Permalink
fix format again
Browse files Browse the repository at this point in the history
  • Loading branch information
morozsm committed Nov 20, 2020
1 parent cd7f24e commit 04977dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion topalias/aliascore.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def load_command_bank(filtering=False): # pylint: disable=too-many-branches
try:
with io.FileIO(r"{}".format(history_file_path), "r") as history_data:
history_data_encoded = io.TextIOWrapper(
history_data, encoding="UTF-8", errors="ignore"
history_data, encoding="UTF-8", errors="ignore",
)
for line in history_data_encoded:
if HISTORY_FILE == ".bash_history":
Expand Down

0 comments on commit 04977dd

Please sign in to comment.