Skip to content

RepairSolver

RepairSolver #339

GitHub Actions / Black failed Jan 17, 2024 in 0s

1 error

Black found 1 error

Annotations

Check failure on line 1188 in /home/runner/work/isla/isla/src/isla/helpers.py

See this annotation in the file changed.

@github-actions github-actions / Black

/home/runner/work/isla/isla/src/isla/helpers.py#L1177-L1188

     elif not str(obj):
         return repr(obj)
     else:
         return str(obj)
 
-def depth_indent(c = ".") -> str:
+
+def depth_indent(c=".") -> str:
     """
     This function returns a string of :code:`c` characters/strings, where the
     number of characters is equal to the depth of the current function call
     stack (where only the calling function is considered). This is useful for
     debugging recursive functions.