Results 34 comments of conversy

No, I did not try to fix it: I thought that someone with a deeper understanding of the inner architecture would be much more efficient than me trying to first...

no sorry, and I won't try in the future, I changed my mind and have no plan to do it... Le 22 oct. 2014 à 15:47, Brian Poole [email protected] a...

`Debug Console` is empty. Here is the content of `launch.json`, is it correct? { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes....

thanks, so I need to open a new issue over there, right?

I get this: ``` Process 53551 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000101553ff8 libdjnn-gui.dylib`djnn::GLWindow::update_children(this=0x0000000106547580, self=0x0000000104c2df40, force_change=0) at gl_window.cpp:644:48 641 642 unsigned int...

oops sorry, it's v1.7.4. I searched for lddb in my extensions, and I picked up the version number of another, not installed, but similarly named extension.

Thank you for your help, if I find a solution, I'll make a notice here.

after some investigations, I ended up with this example of how to best use `Pint` with `mypy`: ``` import pint ureg = pint.UnitRegistry() class Human: height: pint.Quantity = 0 *...

``` import pint ureg = pint.UnitRegistry() # raise DimensionalityError if not compatible def assert_compatible_with(a,b): b.to(a.units) class Human: def __init__(self, height: pint.Quantity = 0 * ureg.cm): # default value in a...