Raffaele Sandrini
Raffaele Sandrini
Consider the following file structure: ``` + |- Library | |- MyLibrary | |- mylib.py |- MyProject |- main.py ``` In order to make `mylib` from `MyLibrary` available in `main.py`...
Consider the following valid Python 3 code: ```python class A(): pass class B(): def __init__(self): self.a = A b = B() class C(b.a): pass ``` Actual behavior: Mypy will report...
Trying to build the example project out of a current (1.2.2 as of this writing) Android Studio fails with the error message, that the referenced gradle android plugin is out...
Consider this metric registration: ```java Counter.builder().name("whatever_created_total").register(); ``` It will end up with the exception: ``` java.lang.IllegalArgumentException: 'whatever_created': Illegal metric name: The metric name must not include the '_created' suffix. at...