Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
QADavidCalvo committed May 31, 2024
1 parent 60e22f9 commit 8a25482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions kebbie/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import argparse
import json
import os
import sys
import xml.etree.ElementTree as ET
from typing import List
Expand Down Expand Up @@ -205,4 +204,4 @@ def cli():

# Save the keyboard elements to a file
with open(args.keyboard + "_" + args.page_source_file, "w", encoding="utf-8") as file:
file.write(page_source_str)
file.write(page_source_str)
2 changes: 1 addition & 1 deletion kebbie/emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,4 +1215,4 @@ def get_suggestions(self) -> List[str]:
if m:
suggestions.append(html.unescape(m.group(1)))

return suggestions
return suggestions

0 comments on commit 8a25482

Please sign in to comment.