Tim OSullivan

Results 20 comments of Tim OSullivan

I see the same problem on Python 3.9 in PyCharm. I wonder if this is just due to the high level of dynamism in Faker? I.e. attributes are added in...

in case it's useful to anyone you can solve this simply by delaying job run: ```python def job_delay_wrapper(func: Callable) -> Callable: """ This fixes an issue with APScheduler: https://github.com/agronholm/apscheduler/issues/445 """...

Just to check, currently the only way to implement endpoint decorators is by rewriting them as a CBV? On that point, is there recommended best practice around using a function...

It's worrying that this isn't merged in yet or had any feedback in 6 months, why does @tiangolo create these libraries without adequate maintainer resource to support them? (Suffering from...

Yeah this is pretty complicated stuff, none of the above solutions seem 'good'. Relying on 'on import' behaviour always feels funny. But you can't solve it in the ASGI lifespan...

Was actually just looking for this functionality, would be great to know what range was selected as well, not sure how easy that is.

This severely hinders wrapping 3rd party components via type script, as you have to copy and paste the interfaces into your SFC, greatly increasing maintenance burdens and destroying readability. Unless...

> The solution is to delete all files under `simple/` in the Nexus PyPi server. I think this will fix the issue I am seeing with this poetry issue and...

+1 on this! I think this is a great feature. Simplifying complex nested components with a store is great for keeping things clean. But having the store be a global/singleton...

Also been struggling to figure this out, can wrap things manually but it is very unreliable. Obviously being able to use Paragraph's wrapping logic would be great.