This commit is contained in:
2025-11-02 01:04:31 +03:00
parent 64c984a704
commit 9c58c10152
70 changed files with 341 additions and 391 deletions
+2 -6
View File
@@ -1,10 +1,6 @@
from argenta.command import Flag, Flags
flags = Flags([
Flag("first"),
Flag("second"),
Flag("third")
])
flags = Flags([Flag("first"), Flag("second"), Flag("third")])
print(flags[0].name)
# first
@@ -13,4 +9,4 @@ print(flags[1].name)
# second
print(flags[2].name)
# third
# third