I getting the error first arg must be callable on the following class
class Main():
    self.o = 0
    def sell(self, do):
        do something
    def run(self):
        try:
            _thread.start_new_thread(self.sell(do), ())
        except Exception as e:
            print(e)
if __name__ == '__main__':
    main = Main()
    main.run()
Could some advise me on how to resolve this, thanks in advance
 
    