codegen
codegen copied to clipboard
Error on concatenating generator results.
In some cases, Line 70: return ''.join(generator.result) throws TypeError exception. It should be corrected as return ''.join(str(x) for x in generator.result)