diff options
| author | Mark Rowe <mark@vector35.com> | 2025-10-02 09:32:52 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2025-10-02 09:33:41 -0700 |
| commit | c3225e7249815ff073794054a99c337f9602c413 (patch) | |
| tree | 50fbb4311d644f2c356bb08b22596774d06b8708 /plugins | |
| parent | 63e4f9efe17debc7129cb27d29c94bbbbd35bc42 (diff) | |
Fix Rust formatting
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/warp/src/container/disk.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/warp/src/container/disk.rs b/plugins/warp/src/container/disk.rs index 02da0f30..b0f48c29 100644 --- a/plugins/warp/src/container/disk.rs +++ b/plugins/warp/src/container/disk.rs @@ -27,7 +27,11 @@ pub struct DiskContainer { impl DiskContainer { pub fn new(name: String, sources: HashMap<SourceId, DiskContainerSource>) -> Self { - Self { name, sources, writable: true } + Self { + name, + sources, + writable: true, + } } pub fn new_from_dir(dir_path: PathBuf) -> Self { |
