Remove default function argument

main
Bob Mottram 2024-05-01 13:16:06 +01:00
parent a599d44d63
commit 7bfb6c8ac9
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import os
def _text_in_file2(text: str, filename: str,
case_sensitive: bool = True) -> bool:
case_sensitive: bool) -> bool:
"""is the given text in the given file?
"""
if not case_sensitive: