Josiah Kaviani

Results 105 comments of Josiah Kaviani

I think we can deny `*args` and `**kwargs` everywhere except decorator definition. ```python def decorator_name(f): def wrapper(*args, **kwargs): #

I'm not sure about metaclasses. Is this related to the Django model or Injector from the `dependencies`? Probably metaclasses are fine if they come from third party library.

Hi @phalt @auvipy I decided to simplify the onboarding process for the newcomer since we both speak one language. That's why the PR in the description is in Russian. The...

Thanks for the quick response! The main reason I'm bringing it here is to avoid the transition of the test suite into a package. I want to follow pytest best...

Hi, Sorry for the long delay. Turning test modules into a package is a workaround for some tool not working. It enables an ability to cross import stuff from different...

Hello @balazser At the moment we have a newborn so I can't do estimations on my open source work. But when I would come back to the `dependencies` project, this...

@supadrupa thoughts?

In that case I would write it like this: ```python from dependencies import container @container class AccountServiceFactory: account_service: AccountService account_store: AccountStore database: Database url: str = "postgresql://postgresql:postgresql@localhost:5432/postgresql" account = Account(id=AccountID(uuid4()),...

As I see `rinari-web-server` is ruby-compilation-run which doesn't used in `rinari` after it's start. I try to fix this problem and send pull request later.