diff options
| author | Jarrod Millman <jarrod.millman@gmail.com> | 2019-11-08 23:31:49 -0800 |
|---|---|---|
| committer | Jarrod Millman <jarrod.millman@gmail.com> | 2019-11-11 13:39:06 -0800 |
| commit | 89daa927a0135a79cc69a75a3c89202158fa2ca7 (patch) | |
| tree | 4a1d775a0f1ba33b93dd5c1e65ef140d0d4b12ae /networkx/algorithms/connectivity/kcomponents.py | |
| parent | 857aa81ead611dd05c7445b53bd128131033d50e (diff) | |
| download | networkx-89daa927a0135a79cc69a75a3c89202158fa2ca7.tar.gz | |
Remove boiler plate from top of modules
The copyright and author stuff is not necessary, out-of-date,
and inconsistent. It takes up visual space and is a pain to
police everyone doing the same thing on the top of the module.
Git handles authorship in a comprehensive and authoritative way.
The LICENSE.txt file applies to all project code.
Diffstat (limited to 'networkx/algorithms/connectivity/kcomponents.py')
| -rw-r--r-- | networkx/algorithms/connectivity/kcomponents.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/networkx/algorithms/connectivity/kcomponents.py b/networkx/algorithms/connectivity/kcomponents.py index 7d5683ed..c899df10 100644 --- a/networkx/algorithms/connectivity/kcomponents.py +++ b/networkx/algorithms/connectivity/kcomponents.py @@ -12,8 +12,6 @@ from networkx.utils import not_implemented_for from networkx.algorithms.flow import edmonds_karp default_flow_func = edmonds_karp -__author__ = '\n'.join(['Jordi Torrents <jtorrents@milnou.net>']) - __all__ = ['k_components'] |
