faif / python-patterns

A collection of design patterns/idioms in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simplification of structural/mvc.py

tomschr opened this issue · comments

The code from structural/mvc.py can be replaced by a more concise and simpler version:

class Price1(float):
    def __str__(self):
        return "{:.2f}".format(self)

Hi,

Thanks for the suggestion. Feel free to submit a pull request and I happily approve it.