pyssb/ssb/feed/__init__.py
Gergely Polonkai b30aa39d6b
ci: Use black instead of flake8
It results in mostly the same style, plus it’s configurable via pyproject.toml.
2023-11-02 12:42:00 +01:00

4 lines
167 B
Python

from .models import Feed, LocalFeed, Message, LocalMessage, NoPrivateKeyException
__all__ = ("Feed", "LocalFeed", "Message", "LocalMessage", "NoPrivateKeyException")