Ivan

Results 11 comments of Ivan

> > from pandas._typing import ( ImportError: cannot import name 'DtypeArg' from 'pandas._typing' (C:\Users\bu_keshui\AppData\Roaming\SpleeterGUI\python\Lib\site-packages\pandas_typing.py) > > Hello, > > This is a known bug in pandas 1.3.1, which comes bundled...

@manas-anarov for some reason you don’t notice the most important thing - there is practically no domain logic here, there is very little of it! therefore, this example carries almost...

@xinatcg hi! I think in this case the only workaround that will help you is `typing.cast`. In this case, you will be fully responsible for the fact that you may...

I think your example works, but clearly in a suboptimal way. a token usually has a lifetime and it would be better for us to use the same token until...

Understood Thanks!

@Sehat1137 hi! this seems to work with the injection decorator: ```python3 from fast_depends import inject @inject async def readiness(scope, receive, send, d: int = Depends(simple_dependency)): assert d == 1 return...

IMO this will not be a popular use case, using strings instead of objects is a rather exotic and rare practice..

> > IMO this will not be a popular use case, using strings instead of objects is a rather exotic and rare practice.. > > At that time, I was...

@str-it hi! I simplified your code which you provided above and demonstrate new version of the code, as well as the output from the console, which shows that the instance...

@Supermasterhuaster hi! maybe a selector provider would be suitable for you: https://python-dependency-injector.ets-labs.org/providers/selector.html