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 | |
parent | 0e7b2e49585e3725736ae380cbd2dfb28fea5093 (diff) |
Format repass.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/modules/handler.py | 2 | ||||
-rw-r--r-- | bin/modules/printer.py | 3 | ||||
-rwxr-xr-x | bin/salis.py | 5 |
3 files changed, 6 insertions, 4 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 diff --git a/bin/salis.py b/bin/salis.py index f51484c..e40e72d 100755 --- a/bin/salis.py +++ b/bin/salis.py @@ -20,13 +20,14 @@ import os import re import sys import time - from argparse import ArgumentParser, HelpFormatter +from subprocess import check_call + from ctypes import CDLL, c_bool, c_uint8, c_uint32, c_char_p, POINTER + from modules.common import Common from modules.handler import Handler from modules.printer import Printer -from subprocess import check_call __version__ = "2.0" |