Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
leoromanovsky committed Nov 12, 2024
1 parent bb7374c commit 218fff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby-sdk/ext/eppo_client/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl Configuration {

fn bandits_configuration(ruby: &Ruby, rb_self: &Self) -> Result<Option<RString>, Error> {
let Some(bandits) = &rb_self.inner.bandits else {
return Ok(None)
return Ok(None);
};
let vec = serde_json::to_vec(bandits).map_err(|err| {
// this should never happen
Expand Down

0 comments on commit 218fff4

Please sign in to comment.