Skip to content

Commit 476b94d

Browse files
committed
fix(): stylesheet errors
1 parent ef9298c commit 476b94d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

conventions/changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def changelog_convention(tag,msg):
1+
def changelog_convention(tag, msg):
22
tag = tag.upper()
33
composed_message = "%s: %s\n" % (tag, msg)
44
return composed_message

conventions/karma_angular.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def angular_convention(tag,msg,context):
1+
def angular_convention(tag, msg, context):
22
tag = tag.lower()
33
if context is '':
44
composed_message = "%s: %s\n" % (tag, msg)

conventions/symphony_cmf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
def symphony_convention(tag,msg):
1+
def symphony_convention(tag, msg):
22
tag = tag.capitalize()
33
composed = "[%s] %s\n" % (tag, msg)

test/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# import yaml
33

44

5-
65
def test_get_text():
76
inputs = [
87
"tag",
@@ -31,6 +30,7 @@ def mock_input(s):
3130
if not a == 'context':
3231
raise AssertionError()
3332

33+
3434
def test_sanitize_as_empty_string():
3535
string = 'asopdfha'
3636
string2 = None

0 commit comments

Comments
 (0)