John Litborn
John Litborn
``` [10:07:54.074] [1] [INFO] Error occurred with mods active. Disabling all mods (unless dev mods active). NullReferenceException at (wrapper managed-to-native) UnityEngine.Component:GetComponentFastPath (System.Type,intptr) at UnityEngine.Component.GetComponent[PrimaryElement] () [0x00000] in :0 at MoreTemperatureSensors.SolidConduitTemperatureSensor.ConduitUpdate...
3.10 is now officially released, so this could be revisited. I'm open for writing a PR if you want.
I don't think there really is, this seems like a clear use of `noqa` (or disabling the check if you use the pattern extensively). One could possibly add logic to...
@kkirsche that's not what yannik was asking about, they are referring to the non-abstract method that explicitly *isn't* required to be defined by child classes. This can probably be closed...
Learning to navigate the different transforms made to the code and what got changed were was a bit tricky for me, but with enough breakpoint debugging and added prints I...
> I think these should be two different checks, but I'm happy to work on a duplicate items in a set check. > > > For sets you only need...
seems pretty straightforward to extend the check to also check for inheritance from `[abc.]ABCMeta`
that's unfortunately the way that AST-based static analysis checkers kind of have to do it. The "proper" way of doing it would be to hook into a type checker, but...
It could definitely be done, adding something similar to `--classmethod-decorators`, if there's sufficient interest.
> For what it's worth, Pyright/Pylance catches this: > It does not catch bare except after a BaseException (and since py3 exceptions have to inherit from baseexception), but indeed looks...