Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Robertorosmaninho committed Jan 13, 2025
1 parent c203e13 commit b4903bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyk/src/pyk/kllvm/hints/prooftrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ def args(self) -> list[LLVMArgument]:
@final
class LLVMFunctionExitEvent(LLVMStepEvent):
"""Represent an LLVM function exit event in a proof trace.
Attributes:
_function_exit_event (llvm_function_exit_event): The underlying LLVM function exit event object.
"""
Expand All @@ -257,13 +258,15 @@ class LLVMFunctionExitEvent(LLVMStepEvent):

def __init__(self, function_exit_event: llvm_function_exit_event) -> None:
"""Initialize a new instance of the LLVMFunctionExitEvent class.
Args:
function_exit_event (llvm_function_exit_event): The LLVM function exit event object.
"""
self._function_exit_event = function_exit_event

def __repr__(self) -> str:
"""Return a string representation of the object.
Returns:
A string representation of the LLVMFunctionExitEvent object using the AST printing method.
"""
Expand Down

0 comments on commit b4903bf

Please sign in to comment.