Commit a798dc94 authored by Virgil Grigoras's avatar Virgil Grigoras

Satisfy "Codacy/PR Quality Review"

parent 1ac9b3d8
...@@ -533,7 +533,7 @@ def fill_indexpage(page, database, db_filter, order, *join): ...@@ -533,7 +533,7 @@ def fill_indexpage(page, database, db_filter, order, *join):
# if elements have to be deleted, because they are no longer used # if elements have to be deleted, because they are no longer used
def modify_database_object(input_elements, db_book_object, db_object, db_session, db_type): def modify_database_object(input_elements, db_book_object, db_object, db_session, db_type):
# passing input_elements not as a list may lead to undesired results # passing input_elements not as a list may lead to undesired results
if type(input_elements) is not list: if not isinstance(input_elements, list):
raise TypeError(str(input_elements) + " should be passed as a list") raise TypeError(str(input_elements) + " should be passed as a list")
input_elements = [x for x in input_elements if x != ''] input_elements = [x for x in input_elements if x != '']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment