* pygnulib/constants.py (filter_filelist): Correct the type hint on the
'filelist' argument. It is a list of strings, not a string.
+2024-04-14 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Fix incorrect type hint.
+ * pygnulib/constants.py (filter_filelist): Correct the type hint on the
+ 'filelist' argument. It is a list of strings, not a string.
+
2024-04-14 Collin Funk <collin.funk1@gmail.com>
gnulib-tool.py: Write newlines consistently.
pass
-def filter_filelist(separator: str, filelist: str, prefix: str, suffix: str,
+def filter_filelist(separator: str, filelist: list[str], prefix: str, suffix: str,
removed_prefix: str, removed_suffix: str,
added_prefix: str = '', added_suffix: str = '') -> str:
'''Filter the given list of files. Filtering: Only the elements starting with