Skip to content

Commit ff8120f

Browse files
committed
Fix Ruff lambda lint in IBKR runtime input tests
1 parent 2c00eba commit ff8120f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_ibkr_runtime_inputs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
class IbkrRuntimeInputsTests(unittest.TestCase):
1515
def test_build_market_history_inputs_wraps_loader(self) -> None:
16-
loader = lambda *_args, **_kwargs: None
16+
def loader(*_args, **_kwargs):
17+
return None
1718

1819
payload = build_market_history_inputs(loader)
1920

0 commit comments

Comments
 (0)