From ab36babfa8ee9978b8a5ad2d3cf68453859a901a Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Mon, 1 Jul 2024 22:15:53 -0700 Subject: [PATCH] pylint --- mfbatch/util.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mfbatch/util.py b/mfbatch/util.py index cc04330..9996045 100644 --- a/mfbatch/util.py +++ b/mfbatch/util.py @@ -1,6 +1,12 @@ -# util.py +""" +mfbatch util - utility functions +""" def readline_with_escaped_newlines(f): + """ + A readline line generator, except lines ending with a backslash will be + combined with their successor. + """ line = '' line_no = 0 while True: