summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networkx/algorithms/approximation/__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/networkx/algorithms/approximation/__init__.py b/networkx/algorithms/approximation/__init__.py
index 13fc21f9..e39dc00a 100644
--- a/networkx/algorithms/approximation/__init__.py
+++ b/networkx/algorithms/approximation/__init__.py
@@ -1,12 +1,12 @@
"""Approximations of graph properties and Heuristic methods for optimization.
- .. warning:: These functions are not imported in the top-level of ``networkx``
+The functions in this class are not imported into the top-level ``networkx``
+namespace so the easiest way to use them is with::
- These functions can be accessed using
- ``networkx.approximation.function_name``
+ >>> from networkx.algorithms import approximation
- They can be imported using ``from networkx.algorithms import approximation``
- or ``from networkx.algorithms.approximation import function_name``
+Another option is to import the specific function with
+``from networkx.algorithms.approximation import function_name``.
"""
from networkx.algorithms.approximation.clustering_coefficient import *