Skip to content

Commit 2f7692a

Browse files
committed
reorder fields in BinaryApp
1 parent 899eee7 commit 2f7692a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/deploy_tools/models/binary_app.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ class BinaryApp(ParentModel):
3232
...,
3333
description="URL to download the binary from.",
3434
)
35-
hash_type: HashType = Field(
36-
...,
37-
description="Type of hash used to check the binary.",
38-
)
3935
hash: str = Field(
4036
"",
4137
description="Hash to verify binary integrity",
4238
)
39+
hash_type: HashType = Field(
40+
...,
41+
description="Type of hash used to check the binary.",
42+
)

0 commit comments

Comments
 (0)