Christian Bundy

Results 95 issues of Christian Bundy

# Bug report ## What's wrong ```python3 class MySerializer(serializers.Serializer[int]): ... MySerializer([1,2,3], many=True) ``` ``` error: Argument 1 to "MySerializer" has incompatible type "List[int]"; expected "Optional[int]" [arg-type] ``` ## How is...

bug

# Bug report ## What's wrong ```python3 class Foo(serializers.PrimaryKeyRelatedField[FooModel]): ... ``` ``` serializers.PrimaryKeyRelatedField[FooModel] TypeError: 'type' object is not subscriptable ``` ## How is that should be ``` Success: no issues...

bug

Steps: 1. Have project with tests in both `./foo` and `./bar` 2. Run `pytest --testmon ./foo` 3. Run `pytest --testmon ./` Expected: tests from `./bar` will be collected and run....

Hi there! I'd like to run Sharp on Android, but Android doesn't support libvips by default. I've tried to install libvips via Termux, but the package hasn't been ported. Would...

enhancement

Hello! I've noticed that when I commit a new file with no tests, I'll get unexpected outline because of blank lines and comments. Expected: ``` example.py (0.0%): Missing lines 2-59...

Hi! I have some HTML like: ```html Hello world ``` And I want: ``` Hello world ``` Usually I'd use [innerText](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/innerText), but it doesn't seem to be available here. Is...

Allocating unused variables and using unused escape characters makes it hard to know which things actually require human attention. Some runtimes allocate memory for these variables, but I don't think...

This is mostly a todo for myself, but I'd love to add a readme for the ssb-handbook module that isn't just the main page of the website.

enhancement

When you set `--amazonec2-volume-type io1`, it errors out: > Error creating machine: Error in driver during machine creation: Error launching instance: InvalidParameterCombination: The parameter iops must be specified for io1...

Problem: Some imports are unused. Solution: Find and remove them. See: #68