I have the following code in python:
class CreateMap:
def changeme(listOne, lisrTwo, listThree, listFour, listfive):
if __name__ == "__main__":
createMap = CreateMap()
createMap.changeme(["oneItem", "secondItem"],[],[],[],[])
It gives me the following error:
TypeError: changeme() takes exactly 5 arguments (6 given)
As I understand, it recognize the first list as two list. How can I avoid it?