From 347e114986bef432533ecb211a027d7418568c07 Mon Sep 17 00:00:00 2001 From: Luc Rubio Date: Mon, 9 Dec 2024 21:37:59 +0100 Subject: [PATCH] Update docstring --- common/python3/AdventOfCodeTestCase.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/python3/AdventOfCodeTestCase.py b/common/python3/AdventOfCodeTestCase.py index d265d1a..36bd781 100644 --- a/common/python3/AdventOfCodeTestCase.py +++ b/common/python3/AdventOfCodeTestCase.py @@ -42,8 +42,7 @@ def __init__(self, test_dir: str, *args, **kwargs) -> None: test_dir: directory where test are located. *args: arguments **kwargs: keyword arguments. - - read_raw: whether to read examples and puzzle input as is or line by - line. + - read_raw: reads the input as a str otherwise line by line as Sequence[str]. """ if 'read_raw' in kwargs: read_raw = kwargs['read_raw']