Bingdom

Results 7 issues of Bingdom

Hi, I'm currently trying to put the pathfinder onto a worker We can't copy certain properties like functions over. So something like ``.clone()`` will not work I was wondering if...

Hello, I was wondering if there's a way to map to an input type? In Strawberry, you could just do: ```py @strawberry.type class User: username: str @strawberry.input class UserInput(User): pass...

With the following schema: ```ts const PokemonEntity = new Entity({ name: 'Pokemon', schema: item({ pokeId: string().key(), label: string().optional(), level: number(), }), table: pokeTable, }); ``` Then, attempting to scan: ```ts...

bug
v2

## 🐛 Bug Description I've only seen this once, so this might be a very rare bug. I have a service that polls the network status, but I got the...

needs_example

## 🐛 Bug Description Using strawberry and terminating the subscription early doesn't catch the exception correctly if another iterator is used inside it. ## 🖥️ Environment ### 1. Nuitka Version,...

bug
excellent_report

## Describe the Bug Using the following code below: ```py from collections.abc import AsyncIterator import asyncio import strawberry from aiohttp import web from strawberry.aiohttp.views import GraphQLView import traceback HTTP_SERVER_PORT =...

bug

Hello, While running a loop for polling the voltage, every once in a while, this exception would get thrown: ``` File "/home/pi/project/automationhat/__init__.py", line 120, in read File "/home/pi/project/automationhat/__init__.py", line 125,...