fix: repair syntax errors from typing annotation cleanup
The earlier batch sed pass incorrectly annotated function *call sites* with type annotations (e.g. muse(*args: typing.Any, ...)) which is not valid Python syntax. Fixed 11 files: - bench_cli.py: muse(*args: typing.Any) → muse(*args) - test_bench_cli_seed.py: lambda *args: typing.Any, **kw → lambda *args, **kw - test_clone/fetch/push_xs_unit.py: *args: typing.Any in calls → *args - test_genesis_ids.py: **kw: typing.Any in lambda → **kw - test_issue_61_clone_after_push.py: same - test_model_defaults.py: **kwargs: typing.Any in ctor calls → **kwargs - test_clones_integration.py: fixture return types + remaining param types - test_phase1_stable_provider.py: MusehubRepo_with_symbols → correct fixture name - test_phase2_blast_risk_route.py: MusehubRepo_with_rows → correct fixture name
Audit: 0 violations, 0 untyped defs across 306 files.
Semantic Changes
667 symbols
0 comments
muse hub commit comment sha256:4992098130166d191cefed0a2821d19cd3cdd3cf50867a4e715c2b30636826c7 --body "your comment"
No comments yet. Be the first to start the discussion.