Reformat python sources with black

This commit is contained in:
Daniel Markstedt 2024-03-22 14:57:35 +09:00
parent 84f52d24b1
commit 40535a3bc0
27 changed files with 29 additions and 3 deletions

View File

@ -85,9 +85,9 @@ class PiscsiCmds:
if PurePath(member["path"]).suffix.lower()[1:] == PROPERTIES_SUFFIX:
member["is_properties_file"] = True
elif f"{member['path']}.{PROPERTIES_SUFFIX}" in properties_files:
member[
"related_properties_file"
] = f"{member['path']}.{PROPERTIES_SUFFIX}"
member["related_properties_file"] = (
f"{member['path']}.{PROPERTIES_SUFFIX}"
)
archive_contents.append(member)
except (unarchiver.LsarCommandError, unarchiver.LsarOutputError):

View File

@ -1,6 +1,7 @@
"""
Module with methods that interact with the Pi system
"""
import subprocess
import logging
import sys

View File

@ -1,6 +1,7 @@
"""
Module for central PiSCSI control board configuration parameters
"""
from ctrlboard_hw.ctrlboard_hw_constants import CtrlBoardHardwareConstants

View File

@ -1,4 +1,5 @@
"""Module for interfacing between the menu controller and the PiSCSI Control Board hardware"""
import logging
from typing import Optional

View File

@ -1,4 +1,5 @@
"""Module for test printing events when buttons from the PiSCSI Control Board are pressed"""
import observer
from ctrlboard_hw.hardware_button import HardwareButton
from ctrlboard_hw.encoder import Encoder

View File

@ -1,4 +1,5 @@
"""Module providing the profile cycler class for the PiSCSI Control Board UI"""
from ctrlboard_menu_builder import CtrlBoardMenuBuilder
from menu.cycler import Cycler

View File

@ -1,4 +1,5 @@
"""Module providing the shutdown cycler for the PiSCSI Control Board UI """
from menu.cycler import Cycler

View File

@ -1,4 +1,5 @@
"""Module providing the interface to the PiSCSI Control Board hardware"""
# noinspection PyUnresolvedReferences
import logging
import time

View File

@ -1,5 +1,6 @@
"""Module containing an implementation for reading the rotary encoder directions through
the i2c multiplexer + interrupt"""
from ctrlboard_hw.hardware_button import HardwareButton

View File

@ -1,6 +1,7 @@
"""
Module for interfacting with the pca9554 multiplexer
"""
# pylint: disable=c-extension-no-member
import logging
import smbus

View File

@ -1,4 +1,5 @@
"""Module for building the control board UI specific menus"""
import logging
from menu.menu import Menu

View File

@ -1,4 +1,5 @@
"""Module is the entry point for the PiSCSI Control Board UI"""
import argparse
import sys
import logging

View File

@ -1,4 +1,5 @@
"""Module implementing a blank screensaver"""
from menu.screensaver import ScreenSaver

View File

@ -1,4 +1,5 @@
"""Module that implements a button cycling functionality"""
from abc import abstractmethod
from menu.timer import Timer
from piscsi.file_cmds import FileCmds

View File

@ -1,4 +1,5 @@
"""Module for creating a menu"""
from typing import List

View File

@ -1,4 +1,5 @@
"""Module for creating menus"""
from abc import ABC, abstractmethod
from menu.menu import Menu

View File

@ -1,4 +1,5 @@
"""Module providing the menu controller."""
import time
import importlib
from typing import Dict, Optional

View File

@ -1,4 +1,5 @@
"""Module provides the abstract menu renderer class"""
import time
import math
import itertools

View File

@ -1,4 +1,5 @@
"""Module providing the Adafruit SSD1306 menu renderer class"""
# pylint: disable=import-error
from board import SCL, SDA
import busio

View File

@ -1,4 +1,5 @@
"""Module providing the luma oled menu renderer class"""
from luma.core.interface.serial import i2c
from menu.menu_renderer import MenuRenderer

View File

@ -1,4 +1,5 @@
"""Module providing the menu screensaver class"""
from abc import abstractmethod
from menu.timer import Timer

View File

@ -1,4 +1,5 @@
"""Module providing a timer class"""
import time

View File

@ -1,4 +1,5 @@
"""Module providing implementations for menu transitions."""
from abc import abstractmethod
from PIL import Image

View File

@ -1,4 +1,5 @@
"""Module for Observable part of the Observer pattern functionality"""
from typing import List
from observer import Observer

View File

@ -1,4 +1,5 @@
"""Module implementing the Observer part of the Observer pattern"""
from abc import ABC, abstractmethod

View File

@ -1,4 +1,5 @@
"""Module implementing the PiSCSI Control Board UI specific menu controller"""
from ctrlboard_menu_builder import CtrlBoardMenuBuilder
from menu.menu_builder import MenuBuilder
from menu.menu_controller import MenuController

View File

@ -1,6 +1,7 @@
"""
Linux interrupt handling module
"""
import signal