Arsenii Velichko

Results 9 issues of Arsenii Velichko

- [x] I have searched the [issues](https://github.com/sdispater/pendulum/issues) of this repo and believe that this is not a duplicate. - [x] I have searched the [documentation](https://pendulum.eustace.io/docs/) and believe that my question...

При включении темной темы, в меню выбора приложений цвет шрифта остаётся черным. ![Screenshot_20210714-152859_Security_addon.png](https://user-images.githubusercontent.com/74658894/125622384-a1d3dbea-c219-4c7d-b92a-0ad746b43919.png)

bug

Our project uses this Python library for the [2.13inch e-Paper HAT (C)](https://www.waveshare.com/product/displays/e-paper/2.13inch-e-paper-hat-c.htm), however there is no official package on PyPi, so dependency management and updating is complicated since we have...

Python library seems to be missing any kind of type hints, which makes it unusable for static analyzers such as Mypy. Static analyzers are an important part for many project's...

My [project](https://github.com/NETMVAS/feecc-spoke-daemon) directory structure is something like: ``` . ├── feecc_spoke │   ├── __init__.py ... │   └── waveshare_epd ... │   ├── epd2in13d.py │   ├── epdconfig.py │   └── __init__.py ... ├──...

bug
topic-configuration

### Type Error at runtime ### Bug description 1. Language list doesn't appear the first time it is opened 2. Changing the language breaks the apps UI. Element's display their...

bug

## What version of Dramatiq are you using? 1.14.2 ## Description Right now we can provide per-actor settings for the retry policy using a predicate in the actor decorator's argument...

I've noticed, that response model is missing in the OpenAPI spec and Swagger for @cache decorated endpoints unless `response_model` is specified explicitly in the endpoint handler decorator, which is optional...

Hi, I'm using an async Httpx client with Hishel transport, that I create with such code: ```python3 transport = hishel.AsyncCacheTransport( transport=httpx.AsyncHTTPTransport(), storage=hishel.AsyncRedisStorage( client=get_redis_connection(), ttl=300, ), controller=hishel.Controller( cacheable_methods=["GET", "POST"], cacheable_status_codes=[200], allow_heuristics=False,...