Skip to content

Commit

Permalink
Fix plugin generator to be compliant with black
Browse files Browse the repository at this point in the history
  • Loading branch information
csalazar committed Jun 29, 2020
1 parent 83edbf1 commit 2bdd07b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/add_new_plugin.py
Expand Up @@ -30,11 +30,11 @@ def create_plugin_file(name, matcher):
class {title}Plugin(Plugin):
name = '{name}'
homepage = ''
name = "{name}"
homepage = ""
tags = []
matchers = [
{{'{matcher}': 'Plugin signature v(?P<version>[0-9\.]+)'}},
{{"{matcher}": "Plugin signature v(?P<version>[0-9\.]+)"}},
]
""".format(
name=name, title=name.title(), matcher=matcher
Expand Down

0 comments on commit 2bdd07b

Please sign in to comment.