diff options
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 { |
