@@ -132,7 +132,6 @@ def _validate_chunking(self) -> int:
132132 )
133133 return required
134134
135-
136135 def freeze_with (self , client : Client ) -> ChunkedTransaction :
137136 """
138137 Freezes the transaction by building transaction bodies for all chunks.
@@ -189,8 +188,7 @@ def execute(
189188 timeout : int | float | None = None ,
190189 wait_for_receipt : Literal [True ] = True ,
191190 validate_status : bool = False ,
192- ) -> TransactionReceipt :
193- ...
191+ ) -> TransactionReceipt : ...
194192
195193 @overload
196194 def execute (
@@ -199,8 +197,7 @@ def execute(
199197 timeout : int | float | None = None ,
200198 wait_for_receipt : Literal [False ] = False ,
201199 validate_status : bool = False ,
202- ) -> TransactionResponse :
203- ...
200+ ) -> TransactionResponse : ...
204201
205202 def execute (
206203 self ,
@@ -235,8 +232,7 @@ def execute_all(
235232 timeout : int | float | None = None ,
236233 wait_for_receipt : Literal [True ] = True ,
237234 validate_status : bool = False ,
238- ) -> list [TransactionReceipt ]:
239- ...
235+ ) -> list [TransactionReceipt ]: ...
240236
241237 @overload
242238 def execute_all (
@@ -245,8 +241,7 @@ def execute_all(
245241 timeout : int | float | None = None ,
246242 wait_for_receipt : Literal [False ] = False ,
247243 validate_status : bool = False ,
248- ) -> list [TransactionResponse ]:
249- ...
244+ ) -> list [TransactionResponse ]: ...
250245
251246 def execute_all (
252247 self ,
0 commit comments