summaryrefslogtreecommitdiff
path: root/src/flake8/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/flake8/api')
-rw-r--r--src/flake8/api/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/flake8/api/__init__.py b/src/flake8/api/__init__.py
new file mode 100644
index 0000000..9f95557
--- /dev/null
+++ b/src/flake8/api/__init__.py
@@ -0,0 +1,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