Polars: Minor code cleanup (#15144)

# Description
Removing todos and deadcode from a previous refactor
This commit is contained in:
Jack Wright
2025-02-19 09:47:21 -08:00
committed by GitHub
parent 8b46ba8b6b
commit c504c93a1d
2 changed files with 2 additions and 8 deletions

View File

@ -197,11 +197,11 @@ mod test {
impl EngineWrapper for &MockEngineWrapper {
fn get_env_var(&self, _key: &str) -> Option<String> {
todo!()
unimplemented!()
}
fn use_color(&self) -> bool {
todo!()
unimplemented!()
}
fn set_gc_disabled(&self, disabled: bool) -> Result<(), ShellError> {