Skip to content

Commit 68f0519

Browse files
committed
cargo fmt
1 parent 6950758 commit 68f0519

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

dstack-util/src/parse_env_file.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@ struct Data {
4242
env: Vec<Pair>,
4343
}
4444

45-
pub fn parse_env(
46-
env_json: &[u8],
47-
allowed: &BTreeSet<String>,
48-
) -> Result<BTreeMap<String, String>> {
45+
pub fn parse_env(env_json: &[u8], allowed: &BTreeSet<String>) -> Result<BTreeMap<String, String>> {
4946
const MAX_ITEMS: usize = 1024;
5047
const MAX_TOTAL_SIZE: usize = 1024 * 1024;
5148

0 commit comments

Comments
 (0)