@@ -154,7 +154,7 @@ def create(ctx, name, integration_type, location, non_interactive, quiet, dry_ru
154
154
eula = 'assets/eula.pdf'
155
155
template_fields ['terms' ] = f'\n "terms": {{\n "eula": "{ eula } "\n }},'
156
156
template_fields ['author_info' ] = (
157
- f'\n "author": {{\n "name": "{ author_name } ",\n "homepage": "{ homepage } ",\n "vendor_id": "{ TODO_FILL_IN } ",\n "sales_email": "{ sales_email } ",\n "support_email": "{ support_email } "\n }}, ' # noqa
157
+ f'\n "author": {{\n "name": "{ author_name } ",\n "homepage": "{ homepage } ",\n "vendor_id": "{ TODO_FILL_IN } ",\n "sales_email": "{ sales_email } ",\n "support_email": "{ support_email } "\n }}' # noqa
158
158
)
159
159
160
160
template_fields ['pricing_plan' ] = '\n "pricing": [],'
@@ -174,7 +174,7 @@ def create(ctx, name, integration_type, location, non_interactive, quiet, dry_ru
174
174
"name": "Datadog",
175
175
"homepage": "https://www.datadoghq.com",
176
176
"sales_email": "info@datadoghq.com"
177
- }, """
177
+ }"""
178
178
else :
179
179
prompt_and_update_if_missing (template_fields , 'email' , 'Email used for support requests' )
180
180
prompt_and_update_if_missing (template_fields , 'author' , 'Your name' )
@@ -186,7 +186,7 @@ def create(ctx, name, integration_type, location, non_interactive, quiet, dry_ru
186
186
"name": "{ template_fields ['author' ]} ",
187
187
"homepage": "",
188
188
"sales_email": ""
189
- }}, """
189
+ }}"""
190
190
template_fields ['terms' ] = ''
191
191
template_fields ['integration_id' ] = kebab_case_name (name )
192
192
template_fields ['package_url' ] = (
0 commit comments