Skip to content

Commit b4903bf

Browse files
Formatting
1 parent c203e13 commit b4903bf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyk/src/pyk/kllvm/hints/prooftrace.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ def args(self) -> list[LLVMArgument]:
249249
@final
250250
class LLVMFunctionExitEvent(LLVMStepEvent):
251251
"""Represent an LLVM function exit event in a proof trace.
252+
252253
Attributes:
253254
_function_exit_event (llvm_function_exit_event): The underlying LLVM function exit event object.
254255
"""
@@ -257,13 +258,15 @@ class LLVMFunctionExitEvent(LLVMStepEvent):
257258

258259
def __init__(self, function_exit_event: llvm_function_exit_event) -> None:
259260
"""Initialize a new instance of the LLVMFunctionExitEvent class.
261+
260262
Args:
261263
function_exit_event (llvm_function_exit_event): The LLVM function exit event object.
262264
"""
263265
self._function_exit_event = function_exit_event
264266

265267
def __repr__(self) -> str:
266268
"""Return a string representation of the object.
269+
267270
Returns:
268271
A string representation of the LLVMFunctionExitEvent object using the AST printing method.
269272
"""

0 commit comments

Comments
 (0)