Stefan Schablowski

Results 17 comments of Stefan Schablowski

You could try replacing ``` ... item: { image }, end(item, monitor) { console.log('end callback fired') ... ``` by ``` ... item: { image }, end: (item, monitor) => {...

> > The @atlaskit/tree package depends on [[email protected]](mailto:[email protected]), while 11.x > > This should be resolved soon. We are about to bump Atlaskit to react 16.x /cc @petegleeson That might...

My current use case: Options `--quiet` / `-q` and `--verbose` / `-v` that control how much output my cmd line tool displays: There is no point in passing / accepting...

@cj81499: Thanks for your advice, much appreciated! 👍🏻. I use a `--log-level` Option now that uses an [enum](https://typer.tiangolo.com/tutorial/parameter-types/enum).

I could - but I was lazy and just copied [Python logging log levels](https://docs.python.org/3/library/logging.html#logging-levels), because there is already sample code for mapping a command line argument to a log level...

Any progress on this one ? Any chance this gets fixed in some future release ?

Any update on this ? I think I can live with modeling `Path` as `str` for the moment and cast it back to `Path` when I use the data, but...

Any updates on this ? It would be really helpful for my work to be able to configure a custom screenshot filename like e.g. `- Screenshot Chrome - .png`

Does anyone have quickfix / hack to make `qta-browser` work with PySide 6.7.0 ? (see also [`qtawesome` #261](https://github.com/spyder-ide/qtawesome/issues/261)). Doesn't matter how bad, I just need to get icon names again....

I would like to share a few learnings from the last couple of days of working on drag'n'drop and the MUI tree view: I have created a [sandbox](https://codesandbox.io/s/treeviewexamplednd-vvbpt7) based on...