From 8a254827ba3b5cb5211bd5e0911a3ed56bf7fb95 Mon Sep 17 00:00:00 2001 From: David Calvo Date: Fri, 31 May 2024 12:29:01 +0200 Subject: [PATCH] fix lint --- kebbie/cmd.py | 3 +-- kebbie/emulator.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/kebbie/cmd.py b/kebbie/cmd.py index e613f78..27fed72 100644 --- a/kebbie/cmd.py +++ b/kebbie/cmd.py @@ -2,7 +2,6 @@ import argparse import json -import os import sys import xml.etree.ElementTree as ET from typing import List @@ -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) \ No newline at end of file + file.write(page_source_str) diff --git a/kebbie/emulator.py b/kebbie/emulator.py index 5cb652a..60324ab 100644 --- a/kebbie/emulator.py +++ b/kebbie/emulator.py @@ -1215,4 +1215,4 @@ def get_suggestions(self) -> List[str]: if m: suggestions.append(html.unescape(m.group(1))) - return suggestions \ No newline at end of file + return suggestions