from tests.test_utils import * @Commentor(fmt=[ (type(None), lambda o: None), ]) def function(): mystring = 'hello' print(mystring) mystring = "hello" print(mystring) return 1 print(function())