From 981fba0ffd7eb0a0f486090ff7ec6f1ca559cda4 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Tue, 23 Jan 2018 18:13:50 +0100 Subject: [PATCH] Update API compiler --- compiler/api/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/api/compiler.py b/compiler/api/compiler.py index ad5964bf..f5f45ae4 100644 --- a/compiler/api/compiler.py +++ b/compiler/api/compiler.py @@ -264,7 +264,7 @@ def start(): docstring_args.append( "{}: {}{}".format( arg_name, - "``optional``".format(flag_number) if is_optional else "", + "``optional`` ".format(flag_number) if is_optional else "", get_docstring_arg_type(arg_type) ) )