pep8: Fix E303 violations.

This commit is contained in:
Sidhant Bhavnani
2016-12-02 16:18:11 +00:00
committed by Tim Abbott
parent 9f0383520c
commit 8c0c12c1d9
42 changed files with 1 additions and 68 deletions

View File

@@ -21,7 +21,6 @@
# THE SOFTWARE.
# Change these values to configure authentication for your codebase account
# Note that this is the Codebase API Username, found in the Settings page
# for your account

View File

@@ -116,7 +116,6 @@ def handle_event(event):
url = make_url("projects/%s" % (project_link,))
scm = "of type %s" % (project_repo_type,) if project_repo_type else ""
subject = "Repository %s Created" % (project_name,)
content = "%s created a new repository %s [%s](%s)" % (actor_name, scm, project_name, url)
elif event_type == 'push':
@@ -165,7 +164,6 @@ def handle_event(event):
body = raw_props.get('content')
changes = raw_props.get('changes')
url = make_url("projects/%s/tickets/%s" % (project_link, num))
subject = "#%s: %s" % (num, name)