We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d627b6 commit 3a1d35cCopy full SHA for 3a1d35c
1 file changed
tests/test_argumentgroups.py
@@ -167,7 +167,9 @@ def test_argument_groups(self):
167
class Opt:
168
arga1: int = field(metadata={"group": title_a})
169
arga2: int = field(metadata={"group": title_a})
170
- argb: int = field(metadata={"group": {"title": title_b, "description": descr_b}})
+ argb: int = field(
171
+ metadata={"group": {"title": title_b, "description": descr_b}}
172
+ )
173
argc: int = field(metadata={"group": (title_c, descr_c)})
174
argd: int = field(metadata={"group": ()})
175
arge: int = field(metadata={"group": ()})
0 commit comments