Skip to content

Commit

Permalink
spend more time on lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Rick Elrod <rick@elrod.me>
  • Loading branch information
relrod committed Dec 16, 2021
1 parent 4fdf906 commit d8aeb5e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
(
(VolumeMount("test_option", "/foo", "/bar"), "/foo:/bar"),
(VolumeMount("test_option", "/foo", "/bar", [VolumeMountOption.z]), "/foo:/bar:z"),
(VolumeMount("test_option", "/foo", "/bar", [VolumeMountOption.z, VolumeMountOption.Z]), "/foo:/bar:z,Z"),
(
VolumeMount("test_option", "/foo", "/bar", [VolumeMountOption.z, VolumeMountOption.Z]),
"/foo:/bar:z,Z",
),
(VolumeMount("test_option", "/foo", "/bar", None), "/foo:/bar"),
(VolumeMount("test_option", "/foo", "/bar", []), "/foo:/bar"),
),
Expand Down

0 comments on commit d8aeb5e

Please sign in to comment.