From 8983aa60d138624ec8d1413166b40d6f10439380 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2020 16:43:25 +0000 Subject: [PATCH] Format Rust code using rustfmt --- src/avatar.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/avatar.rs b/src/avatar.rs index c5e5789..37178c7 100644 --- a/src/avatar.rs +++ b/src/avatar.rs @@ -68,7 +68,13 @@ impl Avatar { .map(|&frame| Image::from(frame.to_string())) .collect(); - Ok(Avatar { animation_frames, name, room_id, position, colour_id }) + Ok(Avatar { + animation_frames, + name, + room_id, + position, + colour_id, + }) } }