Jacob Summers
Jacob Summers
@avilaton - thanks for the reply. Confirmed, marshal doesn't do validation. Example: ``` from flask_restplus import fields, marshal from restplus import api lul_cats_model = api.model('LulCats', { 'cat_id': fields.String(description='The name or...
@ButtaKnife - **What is the purpose of the `required` field if it doesn't enforce strong contracts?** With the current behaviour, the endpoint is allowed to return invalid results. This kind...
> Any opinions on this alredy. Is this something which can be considered? Or should they be added to typeshed? I strongly prefer when they are bundled with the library....
Related issue: #14663
Workaround from: https://github.com/fastai/fastprogress/issues/105#issuecomment-1939645396 > It looks like this is possible like this: > > ``` > import fastprogress.fastprogress > fastprogress.fastprogress.NO_BAR = True > ``` > > If you also want...
After thinking about this a bit furter, I am not sure that this is a bug. Updating the yaml from: ```yaml foo: 8790666 ``` To: ```yaml foo: '8790666' ``` Resolves...
I am also running into this issue moving from poetry 1.4.2 to poetry 1.51. I like @kimmoahola 's proposed solution to this: https://github.com/python-poetry/poetry/issues/3316#issuecomment-733805027 #### Full reproduction steps Poetry version: ```bash...
In the short-term, it would be a significant improvement if we could NOT provide count estimation for compacted tables. I just spent more than a day debugging my Kafka consumer...
@weeco - In my case, the estimate of total messages was off by a factor of 10. I would argue that an estimate that is so wrong, does more harm...
Thanks for the bug report @woodruffw - I am also running into this issue.