chore(frontend-python): add missing trailing comma to trace method of tracer

This commit is contained in:
Umut
2023-08-21 14:20:30 +02:00
parent b404b5c97c
commit 781f003292

View File

@@ -35,7 +35,9 @@ class Tracer:
@staticmethod
def trace(
function: Callable, parameters: Dict[str, ValueDescription], is_direct: bool = False
function: Callable,
parameters: Dict[str, ValueDescription],
is_direct: bool = False,
) -> Graph:
"""
Trace `function` and create the `Graph` that represents it.