You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docent standard supports an optional space after short args like -c 50 and should be parsed into a "-c": "50" but it currently is parsed into "-c": " 50" which has the side effect of not being able to be coerced into a int type because of the space
From docent.org
Short options can have arguments specified after optional space:
-f FILE is equivalent to -fFILE.
The text was updated successfully, but these errors were encountered:
The docent standard supports an optional space after short args like
-c 50
and should be parsed into a"-c": "50"
but it currently is parsed into"-c": " 50"
which has the side effect of not being able to be coerced into a int type because of the spaceFrom docent.org
The text was updated successfully, but these errors were encountered: