I am trying to pass argument to a function in this fashion
GroupGeneralConfig(selectedGroup = "Group1")
and the function looks like this...
def GroupGeneralConfig(self, *args)
img = str(args[0]) + "abc"
whenever i execute this program it is throwing like this...
TypeError: GroupGeneralConfig() got an unexpected keyword argument 'selectedGroup'
whats wrong here