We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d779c8 commit 3f24609Copy full SHA for 3f24609
gitlab/cli.py
@@ -272,6 +272,8 @@ def _get_parser() -> argparse.ArgumentParser:
272
273
274
def _parse_value(v: Any) -> Any:
275
+ if isinstance(v, str) and v.startswith("@@"):
276
+ return v[1:]
277
if isinstance(v, str) and v.startswith("@"):
278
# If the user-provided value starts with @, we try to read the file
279
# path provided after @ as the real value. Exit on any error.
0 commit comments