Add has_return attribute to CallableCodeDetails

class
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-12-01 13:12:35 -03:00
commit 7a2ba97b4c

View file

@ -26,3 +26,4 @@ class CallableCodeDetails(BaseModel):
args: list
body: list
return_type: Optional[Any] = None
has_return: bool = False