Skip to content

Commit 3955c5e

Browse files
authored
strict Pep8 character check
1 parent ca42c8c commit 3955c5e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

intermine/lists/listmanager.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,10 @@ def create_list(
266266
if name is None:
267267
name = self.get_unused_list_name()
268268
if len(content) <= 0:
269-
print("Lists must have one or more elements - the current list has 0")
270-
print(
271-
"Please create a valid list with at least one element and create the list again")
269+
print("Lists must have one or more elements"
270+
" - the current list has 0")
271+
print("Please create a valid list with at least one "
272+
"element and create the list again.")
272273
return
273274

274275
item_content = content

0 commit comments

Comments
 (0)