forked from openlp/openlp
PEP8
This commit is contained in:
parent
6eb2d4f49d
commit
a1e2e92132
@ -90,8 +90,6 @@ class TestDB(TestCase):
|
|||||||
song = Song()
|
song = Song()
|
||||||
song.authors_songs = []
|
song.authors_songs = []
|
||||||
author = Author()
|
author = Author()
|
||||||
author.first_name = "Max"
|
|
||||||
author.last_name = "Mustermann"
|
|
||||||
song.add_author(author)
|
song.add_author(author)
|
||||||
|
|
||||||
# WHEN: We remove the author
|
# WHEN: We remove the author
|
||||||
@ -108,8 +106,6 @@ class TestDB(TestCase):
|
|||||||
song = Song()
|
song = Song()
|
||||||
song.authors_songs = []
|
song.authors_songs = []
|
||||||
author = Author()
|
author = Author()
|
||||||
author.first_name = "Max"
|
|
||||||
author.last_name = "Mustermann"
|
|
||||||
song.add_author(author)
|
song.add_author(author)
|
||||||
song.add_author(author, AuthorType.Translation)
|
song.add_author(author, AuthorType.Translation)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user