From e1b6f0ae441e1cbd39e46eaa010507b5475090f7 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Mon, 5 Aug 2024 19:05:21 -0500 Subject: [PATCH] fix linting --- csharp/Euler/include/wasm-fallback.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/Euler/include/wasm-fallback.cs b/csharp/Euler/include/wasm-fallback.cs index df25655b..003e186c 100644 --- a/csharp/Euler/include/wasm-fallback.cs +++ b/csharp/Euler/include/wasm-fallback.cs @@ -11,7 +11,7 @@ public static string GetText(string name) public static byte[] GetBytes(string name) { - return new byte[] {}; + return new byte[] { }; } } }