Skip to content

Commit

Permalink
chore: remove shebang lines from python modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kalekundert committed Nov 30, 2022
1 parent 883340d commit ae1168d
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 20 deletions.
2 changes: 0 additions & 2 deletions autoclasstoc/__init__.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""\
Add a succinct TOC to auto-documented classes.
"""
Expand Down
2 changes: 0 additions & 2 deletions autoclasstoc/errors.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

class AutoClassTocError(Exception):
pass

Expand Down
2 changes: 0 additions & 2 deletions autoclasstoc/nodes.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""\
The :mod:`autoclasstoc` module defines two new *docutils* nodes, which make it
possible to create collapsible content in HTML.
Expand Down
2 changes: 0 additions & 2 deletions autoclasstoc/plugin.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from sphinx.util.docutils import SphinxDirective
from . import utils, __version__, ConfigError

Expand Down
2 changes: 0 additions & 2 deletions autoclasstoc/sections.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

import inspect
from docutils import nodes as _nodes
from more_itertools import always_iterable
Expand Down
2 changes: 0 additions & 2 deletions autoclasstoc/utils.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from docutils import nodes as _nodes
from docutils.statemachine import StringList, string2lines
from importlib import import_module
Expand Down
2 changes: 0 additions & 2 deletions docs/_ext/example.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from docutils import nodes
from docutils.parsers.rst import Directive
from sphinx.util.docutils import ReferenceRole
Expand Down
2 changes: 0 additions & 2 deletions docs/_ext/show_nodes.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from docutils import nodes
from docutils.parsers.rst import Directive

Expand Down
2 changes: 0 additions & 2 deletions tests/test_section.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

import pytest
import autoclasstoc
import parametrize_from_file as pff
Expand Down
2 changes: 0 additions & 2 deletions tests/test_utils.py
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

import pytest
import autoclasstoc

Expand Down

0 comments on commit ae1168d

Please sign in to comment.