Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seanses committed Feb 5, 2025
1 parent 1c9ef3e commit 4234c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/src/bin/xtool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl Command {
arg.sequential,
hub_client,
threadpool,
arg.compression.map(|c| CompressionScheme::try_from(c).ok()).flatten(),
arg.compression.and_then(|c| CompressionScheme::try_from(c).ok()),
!arg.migrate,
)
.await?;
Expand Down

0 comments on commit 4234c6f

Please sign in to comment.