issues
search
quantifiedcode
/
python-anti-patterns
An open collection of Python anti-patterns and worst practices.
https://quantifiedcode.github.io/python-anti-patterns
Other
1.71k
stars
249
forks
source link
Update returning_more_than_one_variable_type_from_function_call.rst
#31
Closed
yegle
closed
9 years ago
yegle
commented
9 years ago
Fixed example code
print statement -> print "function" (not really a function if in Python2 but makes the code forward compatible)
var == None -> var is None
adewes
commented
9 years ago
Thanks for the bugfixes @yegle!
Fixed example code