Skip to content

Commit 5a64481

Browse files
committed
remove unnecesary fmt specifier, fix lint issues
1 parent 37ee412 commit 5a64481

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

apps/pyth-lazer-agent/src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ mod relayer_session;
1616
mod websocket_utils;
1717

1818
#[derive(Parser, Deserialize)]
19-
#[serde(rename_all = "kebab-case")]
2019
#[command(version)]
2120
struct Cli {
2221
#[clap(short, long, default_value = "config/config.toml")]
@@ -26,7 +25,6 @@ struct Cli {
2625
}
2726

2827
#[derive(clap::ValueEnum, Clone, Deserialize, Default)]
29-
#[serde(rename_all = "kebab-case")]
3028
enum LogFormat {
3129
#[default]
3230
Json,
@@ -50,7 +48,6 @@ async fn main() -> anyhow::Result<()> {
5048
}
5149

5250
fn init_tracing_subscriber(log_format: LogFormat) {
53-
5451
#[allow(
5552
clippy::expect_used,
5653
reason = "application can fail on invalid RUST_LOG"

0 commit comments

Comments
 (0)