From 4274f53c3e5c03d232f342984d8e06cbb39e70d3 Mon Sep 17 00:00:00 2001 From: Danilo Guanabara Date: Sun, 5 Nov 2023 00:11:57 -0300 Subject: [PATCH] Fixing clippy --- ecosystem/python/parser/src/function/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecosystem/python/parser/src/function/mod.rs b/ecosystem/python/parser/src/function/mod.rs index 14c81e8a..cb40f031 100644 --- a/ecosystem/python/parser/src/function/mod.rs +++ b/ecosystem/python/parser/src/function/mod.rs @@ -12,7 +12,7 @@ use crate::types::type_::TypeParser; #[derive(Default)] -pub struct FunctionParser; +pub struct FunctionParser {} impl Parser<&str> for FunctionParser { type Output = Function;