code quality improvements

This commit is contained in:
Ace
2024-05-11 23:25:40 +02:00
parent 6a825d431c
commit 9346fcf750
6 changed files with 14 additions and 15 deletions

View File

@@ -28,8 +28,6 @@ THE SOFTWARE.
"""
import logging
import os
import subprocess
import sys
import time
@@ -128,4 +126,3 @@ implementation = RaspberryPi()
for func in [x for x in dir(implementation) if not x.startswith('_')]:
setattr(sys.modules[__name__], func, getattr(implementation, func))