xyz

Results 10 comments of xyz

Hi @KaiSforza . It works for me in my project. `black` with your changes doesn't report anything where the official/released does.

In our case this is a problem because our Sonar later reports that line goes over 100 characters. I've used `# fmt: off` to prevent `black` from changing it. I...

Hi again. I've tested for older lib versions we have used in Python 3.10. I have run: ```pip pip install xgboost==1.7.4 google-cloud-profiler==4.1.0 ``` I couldn't downgrade to `google-cloud-profiler==4.0.0` because it...

It's still bad TBH. After downgrading I get another error later in the project code when initialized `DMatrix` is used for predictions using model. I won't paste the code just...

The only place I have found that should be fixed/changed is https://github.com/spec-first/connexion/blob/211bdb03f6b20f7dc90fe0037e57cd142c48deb5/connexion/validators/json.py#L54 The main issue is that ```python body = bytes_body.decode(self._encoding) ``` should we wrapped in `try-except` like: ```python try:...

I confirm that is still presists in ``` Python 3.12.2 connexion==3.0.6 jsonschema==4.21.1 ``` I've got this after testing project with `pytest`: ``` /venv/path/lib/python3.12/site-packages/connexion/json_schema.py:16 /venv/path/lib/python3.12/site-packages/connexion/json_schema.py:16 /venv/path/lib/python3.12/site-packages/connexion/json_schema.py:16: DeprecationWarning: jsonschema.RefResolver is deprecated as...

Hi. I wanted to post this in https://github.com/nedbat/coveragepy/issues/1665 but it seems that investigation moved here. I hope my code example will help to investigate and not clutter the Issue. I...

`SyntaxWarning: invalid escape sequence ...` fixed in https://github.com/scylladb/python-driver/pull/405 and available since version 3.28.1 https://github.com/scylladb/python-driver/commits/3.28.1-scylla .

It seems that it may require different approach than inheritance for `AuthorizedSession` to borrow `ClientSession` implementation as one of `aiohttp` maintainers mentioned https://github.com/aio-libs/aiohttp/issues/3185#issuecomment-412326191 .