Skip to content

Commit d88ba99

Browse files
committed
cargo fmt
1 parent 8d646a2 commit d88ba99

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/helix/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ pub mod teams;
6868
pub mod users;
6969
pub mod videos;
7070

71-
7271
pub(crate) mod ser;
7372
pub(crate) use crate::deserialize_default_from_null;
7473
use crate::{parse_json, parse_json_value};

src/helix/search/search_categories.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ impl RequestGet for SearchCategoriesRequest<'_> {
102102
}
103103

104104
impl helix::Paginated for SearchCategoriesRequest<'_> {
105-
fn set_pagination(&mut self, cursor: Option<helix::Cursor>) { self.after = cursor.map(Cow::Owned) }
105+
fn set_pagination(&mut self, cursor: Option<helix::Cursor>) {
106+
self.after = cursor.map(Cow::Owned)
107+
}
106108
}
107109

108110
#[cfg(test)]

0 commit comments

Comments
 (0)