Rafal Stozek

Results 8 issues of Rafal Stozek

Goal of this PR is to type orm's `Query` objects. This will allow to type-check stuff like: ```python session.query(Employee) # -> Query[Employee] session.query(Employee).get(123) # -> Employee session.query(Employee, Invoice) # ->...

Right now `relationship(uselist=True)` uses `typing.Iterable`, which breaks most of our code. Relationship configuration is described in greater detail here: https://docs.sqlalchemy.org/en/13/orm/collections.html Right now this PR just replaces `typing.Iterable` with `list`. What...

This happens with fresh docker setup when I'm attempting to view a database. docker-compose config: ```yaml version: "3.4" services: db: image: mongo:4.4.0 environment: MONGO_INITDB_ROOT_USERNAME: $MONGO_USER MONGO_INITDB_ROOT_PASSWORD: $MONGO_PASSWORD ports: - 27017:27017...

old_docker_version

# 🐛 Bug When trying to use prover I'm running into the following: ``` error: abort code not covered by any of the `aborts_if` or `aborts_with` clauses ┌─ /Users/rafal/Code/aptos-fun/06-tables/sources/Donation.move:77:5 │...

bug
move-prover

### Describe the bug I am running into an infinite loop with effects. I am 99.9% positive that this code should not result in one and that this is in...

### Ensure stubs packages are not installed - [X] No sqlalchemy stub packages is installed (both `sqlalchemy-stubs` and `sqlalchemy2-stubs` are not compatible with v2) ### Verify if the api is...

bug
PRs (with tests!) welcome
typing

.pyx extension is already used by Cython - a well known project in python community. It may be a good idea to pick a different one.

So, a while ago I was using `aioinject`, but I made a small modification of my own which looked more or less like this: ```python class Container(BaseContainer): def get_provider(self, type_:...