Removed unnecessary trailing commas and spaces in various code.

This commit is contained in:
Mariusz Felisiak 2017-12-28 21:07:29 +01:00 committed by GitHub
parent 058d112ed2
commit 83a36ac49a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
42 changed files with 87 additions and 87 deletions

View file

@ -30,10 +30,10 @@ class SystemCheckFrameworkTests(SimpleTestCase):
return [1, 2, 3]
def f2(**kwargs):
return [4, ]
return [4]
def f3(**kwargs):
return [5, ]
return [5]
calls = [0]