You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class P2P( P2PRequests ): def __init__(self, **args): super().__init__(**args)
Why do we need an extra layer of abstraction.
This is what causes the typing problem.
Also, all methods do not have parameter or return type typing.
class P2P( P2PRequests ): def __init__(self, **args): super().__init__(**args)Why do we need an extra layer of abstraction.
This is what causes the typing problem.
Also, all methods do not have parameter or return type typing.