Nei Cardoso de Oliveira Neto

Results 30 comments of Nei Cardoso de Oliveira Neto

Somewhat related to this issue, I created two new command-line switches: `--archived` and `--archived_only`. They're to be used when supplying a board letter (like `/mlp/`) so you can download the...

There are also the type hints on function defs. And they very much deserve some highlighting. ```python def fun_func( big_param: Set[Tuple[int, int]], generic_param: List[T], ) -> Mapping[str, T]: ... ```

Type annotations of the attributes of a dataclass need proper highlighting as well: ```python Number = Union[int, float] @dataclass(frozen=True) class SomeClass: foo: Generator[AnyStr, Number, None] = field(hash=False) bar: Iterable[T] =...

When using generic types (typevar) on classes (inheriting from it), no highlighting appears. ```python V = TypeVar("V", FirstType, SomeOtherType) E = TypeVar("E") class StopIgnoringMe(Generic[V, E], ParentClass): pass class NormalInheritance(ParentClass): pass...

It appears Github's highlighting decided that _everything that starts with a capital letter deserves that same color_. I'm still inclined towards having separate scopes for typehints and for _normal_ classes,...

The issues you mentioned appear to have been deleted. :open_mouth:

You guys are definitely more qualified than me to report this error to them, but if you link the issue here, I'll make sure to engage there as well. Thank...

>no, but this is something that I think would be worth considering for the forthcoming v2.5.0 release. We're past 2.7 already and we're still using scripts we hacked together to...

I was going to make these same changes. Almost exactly like you made them.

How are you normalizing your photos? Do you know for sure their black level and bit depth is 2 ** 10 and 14 bits respectively?