Skip to content

Commit ea2fa93

Browse files
committed
Fixup lint
1 parent e46c42c commit ea2fa93

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

dandi/tests/test_helptext.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33

44
def get_helptext(command):
5-
result = subprocess.run([*command, '--help'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
5+
result = subprocess.run(
6+
[*command, '--help'],
7+
stdout=subprocess.PIPE,
8+
stderr=subprocess.PIPE,
9+
text=True
10+
)
611
return result.stdout
712

13+
814
def test_resource_identifier_helptext():
915
# The \n chars must be included for correct rendering
1016
correct = "Accepted resource identifier patterns:\n - DANDI:<dandiset id>[/<version>]\n"

0 commit comments

Comments
 (0)