diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
commit | 38764943e5fc61c424c018068dc7f6790dddf147 (patch) | |
tree | 65a0f5a00c91436b30e580f16365557437d61da7 /bin/modules | |
parent | 0e7b2e49585e3725736ae380cbd2dfb28fea5093 (diff) |
Format repass.
Diffstat (limited to 'bin/modules')
-rw-r--r-- | bin/modules/handler.py | 2 | ||||
-rw-r--r-- | bin/modules/printer.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bin/modules/handler.py b/bin/modules/handler.py index ba2b249..ad62c5c 100644 --- a/bin/modules/handler.py +++ b/bin/modules/handler.py @@ -1,6 +1,6 @@ """ SALIS: Viewer/controller for the SALIS simulator. -file: handler.py +File: handler.py Author: Paul Oliver Email: paul.t.oliver.design@gmail.com diff --git a/bin/modules/printer.py b/bin/modules/printer.py index cfbca84..bf664d2 100644 --- a/bin/modules/printer.py +++ b/bin/modules/printer.py @@ -12,9 +12,10 @@ format. It makes use of the curses library for terminal handling. import curses import curses.textpad import os - from collections import OrderedDict + from ctypes import c_uint32, cast, POINTER + from modules.world import World |