From e5b0754d04b60c1c6cbaaa326906f1a82b49c103 Mon Sep 17 00:00:00 2001 From: Kevin Murray Date: Thu, 12 Oct 2023 07:25:21 +0200 Subject: [PATCH] fixes from pylint --- blsl/ildemux.py | 1 + blsl/nstitch.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/blsl/ildemux.py b/blsl/ildemux.py index 684541d..c072280 100644 --- a/blsl/ildemux.py +++ b/blsl/ildemux.py @@ -1,5 +1,6 @@ from io import BytesIO from pathlib import Path +import sys from sys import stdin from tqdm import tqdm from collections import Counter diff --git a/blsl/nstitch.py b/blsl/nstitch.py index 02556a6..dddc02a 100644 --- a/blsl/nstitch.py +++ b/blsl/nstitch.py @@ -49,4 +49,4 @@ def nstitch_main(argv=None): r2.close() if __name__ == "__main__": - nstich_main() + nstitch_main()