Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
passing 0 as a parameter will throw "inputs must have a value", which is not correct here.
There are no old-style classes in Python 3. If a class doesn't inherit from anything than it is implicitly inherits from
object
.Exactly what I was thinking
@jacobb: Yeah, it lets your objects use
super()
: http://rhettinger.wordpress.com/2011/05/26/super-considered-super/This comment is hidden because it contains spoiler information about the solution
Ugh, not best practices to use old-style classes.
You should probably inherit from object, according to the Google Style Guide at least.