fix python lint

This commit is contained in:
bit-aloo
2025-08-06 12:02:20 +05:30
parent eff096273c
commit 84316d9206

View File

@@ -106,15 +106,15 @@ def test_regexp():
limbo.run_test_fn(
"select regexp_capture('the year is 2021', '([0-9]+)') = '2021';",
true,
);
)
limbo.run_test_fn(
"select regexp_capture('abc 123 def', '([a-z]+) ([0-9]+) ([a-z]+)', 2) = '123';",
true,
);
)
limbo.run_test_fn(
"select regexp_capture('no digits here', '([0-9]+)');",
null,
);
)
limbo.quit()