From 810f604a5a81cd0e462e887d3c0c2e120ec29920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Wed, 20 Apr 2016 19:49:43 +0200 Subject: [PATCH] codegen: added Pasokon modes to test harness --- pysstv/examples/codegen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysstv/examples/codegen.py b/pysstv/examples/codegen.py index 31fce68..301f785 100644 --- a/pysstv/examples/codegen.py +++ b/pysstv/examples/codegen.py @@ -37,10 +37,10 @@ class Image(object): def __str__(self): return self.content -from pysstv.color import MartinM1, MartinM2 +from pysstv.color import MartinM1, MartinM2, PasokonP3, PasokonP5, PasokonP7 import re -supported = [MartinM1, MartinM2] +supported = [MartinM1, MartinM2, PasokonP3, PasokonP5, PasokonP7] ROW_RE = re.compile(r'ROW\(\d+\)') def main(sstv_class=None):