@@ -36,7 +36,7 @@ class _GrantErrors:
3636 python_usage : list [str ] = strawberry .field (default_factory = list )
3737 community_contribution : list [str ] = strawberry .field (default_factory = list )
3838 been_to_other_events : list [str ] = strawberry .field (default_factory = list )
39- needs_funds_for_travel : list [str ] = strawberry .field (default_factory = list )
39+ need_funds_for_travel : list [str ] = strawberry .field (default_factory = list )
4040 need_visa : list [str ] = strawberry .field (default_factory = list )
4141 need_accommodation : list [str ] = strawberry .field (default_factory = list )
4242 why : list [str ] = strawberry .field (default_factory = list )
@@ -110,7 +110,7 @@ class SendGrantInput(BaseGrantInput):
110110 python_usage : str
111111 been_to_other_events : str
112112 community_contribution : str
113- needs_funds_for_travel : bool
113+ need_funds_for_travel : bool
114114 need_visa : bool
115115 need_accommodation : bool
116116 why : str
@@ -147,7 +147,7 @@ class UpdateGrantInput(BaseGrantInput):
147147 python_usage : str
148148 been_to_other_events : str
149149 community_contribution : str
150- needs_funds_for_travel : bool
150+ need_funds_for_travel : bool
151151 need_visa : bool
152152 need_accommodation : bool
153153 why : str
@@ -225,7 +225,7 @@ def send_grant(self, info: Info, input: SendGrantInput) -> SendGrantResult:
225225 "python_usage" : input .python_usage ,
226226 "been_to_other_events" : input .been_to_other_events ,
227227 "community_contribution" : input .community_contribution ,
228- "needs_funds_for_travel " : input .needs_funds_for_travel ,
228+ "need_funds_for_travel " : input .need_funds_for_travel ,
229229 "need_visa" : input .need_visa ,
230230 "need_accommodation" : input .need_accommodation ,
231231 "why" : input .why ,
0 commit comments