blob: 9f95557f4f0b3273a54144550c03cd2bdd02c8a2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""Module containing all public entry-points for Flake8.
This is the only submodule in Flake8 with a guaranteed stable API. All other
submodules are considered internal only and are subject to change.
"""
def get_style_guide(**kwargs):
"""Stub out the only function I'm aware of people using."""
pass
|