I am using 2to3 to convert a script. The only warning I get is:
RefactoringTool: Line 716: You should use 'operator.mul(None)' here.
Line 716 of the original script is:
classes = repeat(None)
I don't get where shall I use operator.mul(None)
. The reference documentation of repeat()
(link to docs) shows that I can pass None
without any problem. So, what shall I do?