I have a method in my Customer class called save_from_row(). It looks like this:
Customer
save_from_row()
@classmethod def save_from_row(row): c = Customer(
You want:
@classmethod def save_from_row(cls, row):
Class methods get the method's class as the first argument.