From 38764943e5fc61c424c018068dc7f6790dddf147 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 02:29:14 +0100 Subject: Format repass. --- bin/modules/handler.py | 2 +- bin/modules/printer.py | 3 ++- bin/salis.py | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) (limited to 'bin') 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" -- cgit v1.2.1