def format()

in noxfile.py [0:0]


def format(session):
    """Runs linters and fixers"""
    session.run("poetry", "install", external=True)
    session.run("isort", SRC)
    session.run("black", SRC)
    session.run("autoflake", SRC)