Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make AsyncTransport and Transport proper abstract base classes #350

Merged
merged 2 commits into from
Aug 5, 2022
Merged

Commits on Aug 4, 2022

  1. Update async_transport.py

    The `@abc.abstractmethod` decorator requires that the class’s metaclass be `abc.ABCMeta` or derived from it. Usually this is satisfied by inherit from `abc.ABC`.
    
    See: https://docs.python.org/3/library/abc.html#abc.abstractmethod
    willfrey authored Aug 4, 2022
    Configuration menu
    Copy the full SHA
    3c38caf View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. Update transport.py

    Make `Transport` inherit from `abc.ABC`.
    willfrey authored Aug 5, 2022
    Configuration menu
    Copy the full SHA
    1842969 View commit details
    Browse the repository at this point in the history