diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-29 16:46:50 +0200 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-29 16:46:50 +0200 |
commit | 43a58a7be48208f8d87ee5256c84008a02425ecf (patch) | |
tree | 8fee5e83861b7b1a382b26da4a089dc6872aa5b2 /src/sliceitoff/display/__init__.py | |
parent | 505ca2dead48d80b15f64f316218502bdc54daea (diff) |
docstring etc linting
Diffstat (limited to 'src/sliceitoff/display/__init__.py')
-rw-r--r-- | src/sliceitoff/display/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sliceitoff/display/__init__.py b/src/sliceitoff/display/__init__.py index 92f4d75..543636b 100644 --- a/src/sliceitoff/display/__init__.py +++ b/src/sliceitoff/display/__init__.py @@ -1,4 +1,4 @@ +""" display - All drawing to the display should happen here """ from .scaling import Scaling from .display import Display -from .static import INTERNAL_WIDTH, INTERNAL_HEIGHT -from .colors import CGA_COLORS +from .static import INTERNAL_WIDTH, INTERNAL_HEIGHT, CGA_COLORS |