We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c40d0c8 commit fcca1d9Copy full SHA for fcca1d9
1 file changed
approval_utilities/utilities/multiline_string_utils.py
@@ -1,9 +1,11 @@
1
+from typing import Optional
2
+
3
import textwrap
4
5
from approval_utilities.utilities.logger.simple_logger import SimpleLogger
6
7
-def remove_indentation_from(text: str) -> str:
8
+def remove_indentation_from(text: Optional[str]) -> str:
9
SimpleLogger.variable("text", text)
10
if not text:
11
return ""
0 commit comments