Skip to content

Commit 56c0b4e

Browse files
committed
Fixed TextHelpers.IndentCode()
1 parent 2779e03 commit 56c0b4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PythonNETExtensions/Helpers/TextHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace PythonNETExtensions.Helpers
55
public static class TextHelpers
66
{
77
[MethodImpl(MethodImplOptions.AggressiveInlining)]
8-
public static string IndentCode(this string code, string indentation = " ")
8+
public static string IndentCode(this string code, string indentation = " ")
99
{
1010
return $"{indentation}{code.Replace("\n", $"\n{indentation}")}";
1111
}

0 commit comments

Comments
 (0)