From 1222a9b7f7dde5589552f0cf3c11e68ed29cd4d1 Mon Sep 17 00:00:00 2001 From: Ryan Snodgrass Date: Wed, 22 May 2024 21:43:21 -0400 Subject: [PATCH] ruff fixes --- pyavcontrol/library/schema.py | 2 +- pyavcontrol/library/yaml_library.py | 1 - pyavcontrol/utils.py | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pyavcontrol/library/schema.py b/pyavcontrol/library/schema.py index 458966e..5c44c58 100644 --- a/pyavcontrol/library/schema.py +++ b/pyavcontrol/library/schema.py @@ -1,4 +1,4 @@ -from typing import Literal, Optional +from typing import Literal from pydantic import BaseModel, PositiveInt from serial import ( diff --git a/pyavcontrol/library/yaml_library.py b/pyavcontrol/library/yaml_library.py index 2ad5f20..0bb6f43 100644 --- a/pyavcontrol/library/yaml_library.py +++ b/pyavcontrol/library/yaml_library.py @@ -7,7 +7,6 @@ import pathlib from abc import ABC from concurrent.futures import ThreadPoolExecutor -from typing import List import yaml diff --git a/pyavcontrol/utils.py b/pyavcontrol/utils.py index 16e11b9..ab3ddea 100644 --- a/pyavcontrol/utils.py +++ b/pyavcontrol/utils.py @@ -1,6 +1,5 @@ import logging import re -from typing import List LOG = logging.getLogger(__name__)