emmett-framework / emmett

The web framework for inventors
BSD 3-Clause "New" or "Revised" License
1.06k stars 71 forks source link

Allow float params in routes to be negative #242

Open josejachuf opened 5 years ago

josejachuf commented 5 years ago

Hi @gi0baro

Routes with negative float values do not work as expected.

@foo.route('/a//<float:lat>')
def a(lat):

/foo/a/-30.5

Jose