From 26c3cdfa436bb5b5693b23fbe7f14df5228af2a2 Mon Sep 17 00:00:00 2001 From: Martin Vilcans Date: Mon, 7 Nov 2022 20:13:43 +0100 Subject: Remove code related to output in text format This was never implemented, so remove it (for now) --- screenplain/main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/screenplain/main.py b/screenplain/main.py index 437928e..487d8bf 100644 --- a/screenplain/main.py +++ b/screenplain/main.py @@ -114,10 +114,7 @@ def main(args): output = sys.stdout.buffer try: - if format == 'text': - from screenplain.export.text import to_text - to_text(screenplay, output) - elif format == 'fdx': + if format == 'fdx': from screenplain.export.fdx import to_fdx to_fdx(screenplay, output) elif format == 'html': -- cgit