Skip to content

internal: remove redundant bare use chumsky; self-import#5846

Merged
max-sixty merged 1 commit intomainfrom
internal/remove-redundant-chumsky-import-25039216867
Apr 28, 2026
Merged

internal: remove redundant bare use chumsky; self-import#5846
max-sixty merged 1 commit intomainfrom
internal/remove-redundant-chumsky-import-25039216867

Conversation

@prql-bot
Copy link
Copy Markdown
Collaborator

Summary

prqlc/prqlc-parser/src/parser/types.rs:1 had a bare use chumsky; self-import on its own line, immediately followed by the actually-needed use chumsky::input::BorrowInput;. Since chumsky is a crate in this crate's dependency tree, it is always reachable as chumsky::... without a use statement; the bare use chumsky; pulls the same name into local scope but nothing in the file references it as the bare identifier. Removing it leaves the file unchanged in behavior.

Found during the nightly survey of prqlc-parser/src/parser/types.rs. cargo build -p prqlc-parser and cargo clippy -p prqlc-parser both pass after the change.

No regression test — the change is a pure import cleanup with no observable behavior.

@max-sixty max-sixty merged commit f538a1b into main Apr 28, 2026
35 checks passed
@max-sixty max-sixty deleted the internal/remove-redundant-chumsky-import-25039216867 branch April 28, 2026 13:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants