From 9e70c3ff884de2fd1be575cfaab44e3da4e7d1ce Mon Sep 17 00:00:00 2001 From: webthethird Date: Wed, 8 Mar 2023 16:36:51 -0600 Subject: [PATCH] Fix typo --- slither/core/declarations/contract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slither/core/declarations/contract.py b/slither/core/declarations/contract.py index 1ca38a1a2..35f31ab07 100644 --- a/slither/core/declarations/contract.py +++ b/slither/core/declarations/contract.py @@ -966,7 +966,7 @@ class Contract(SourceMapping): # pylint: disable=too-many-public-methods if func.is_constructor or func.is_fallback or func.is_receive: continue interface += f" function {func.interface_signature_str};\n" - interface += "}\n" + interface += "}\n\n" return interface # endregion