mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
7 lines
140 B
Python
7 lines
140 B
Python
# pyright: strict
|
|
|
|
from typing import Any
|
|
|
|
class Functions:
|
|
def call_function(self, function_name: str, resolved_args: Any) -> Any: ...
|