Skip to content

Commit afd7c28

Browse files
style: format long type annotation
1 parent e2bba31 commit afd7c28

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

codeflash/languages/python/function_optimizer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141

4242
_MAX_CACHE_SIZE = 128
4343

44-
_resolve_cache: OrderedDict[tuple[str, str, tuple[tuple[str, str], ...]], ast.FunctionDef | ast.AsyncFunctionDef | None] = OrderedDict()
44+
_resolve_cache: OrderedDict[
45+
tuple[str, str, tuple[tuple[str, str], ...]], ast.FunctionDef | ast.AsyncFunctionDef | None
46+
] = OrderedDict()
4547

4648

4749
class PythonFunctionOptimizer(FunctionOptimizer):

0 commit comments

Comments
 (0)