Skip to content

Commit

Permalink
Applied fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrSeifert committed Mar 13, 2024
1 parent 20ad61f commit c1bb1dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions controller/src/radar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ use radar_client::{
};
use tokio::{
sync::oneshot,
task::{
self,
},
task::{self,},
};
use url::Url;
use utils_state::StateRegistry;
Expand Down
4 changes: 3 additions & 1 deletion cs2/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,9 @@ fn parse_type(cs2: &CS2Handle, schema_type: &CSchemaType) -> anyhow::Result<Opti
}
AtomicCategory::CollectionOfT => {
let value = schema_type.var_type()?.read_string()?;
if !value.starts_with("CUtlVector<") || !value.starts_with("C_NetworkUtlVectorBase<") {
if !value.starts_with("CUtlVector<")
|| !value.starts_with("C_NetworkUtlVectorBase<")
{
return Ok(None);
}

Expand Down

0 comments on commit c1bb1dc

Please sign in to comment.