Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node meta hook/fix server hook bug #344

Merged
merged 13 commits into from
Nov 14, 2024
Prev Previous commit
Next Next commit
fix lint problem1
zhangyongchao committed Nov 12, 2024

Unverified

This user has not yet uploaded their public signing key.
commit be1f4df7a7f2c192a13aa3eaacbb0a8eedd5bd2e
2 changes: 1 addition & 1 deletion tests/basic_tests/test_engine.py
Original file line number Diff line number Diff line change
@@ -255,7 +255,7 @@ def test_engine_formatter_end(self):
dict(id='2', kind='Code', name='m2',
args=dict(code='def test1(x: int):\n return [[x, 2*x], [3*x, 4*x]]\n')),
# two unused node
dict(id='3', kind='Code', name='m3',
dict(id='3', kind='Code', name='m3',
args=dict(code='def test2(x: int):\n return dict(a=1, b=x * x)\n')),
dict(id='4', kind='Code', name='m4', args=dict(code='def test3(x, y, z):\n return f"{x}{y}{z}"\n'))]
edges = [dict(iid='__start__', oid='1'), dict(iid='__start__', oid='2'), dict(iid='2', oid='__end__'),