Skip to content

Commit b1a6997

Browse files
committed
Docstring should be first.
1 parent d9d6181 commit b1a6997

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

pycco/main.py

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,4 @@
11
#!/usr/bin/env python
2-
from __future__ import absolute_import, print_function
3-
4-
# Import our external dependencies.
5-
import argparse
6-
import os
7-
import re
8-
import sys
9-
import time
10-
from os import path
11-
12-
import pygments
13-
from markdown import markdown
14-
from pycco.generate_index import generate_index
15-
from pycco.languages import supported_languages
16-
from pycco_resources import css as pycco_css
17-
# This module contains all of our static resources.
18-
from pycco_resources import pycco_template
19-
from pygments import formatters, lexers
20-
212
"""
223
"**Pycco**" is a Python port of [Docco](http://jashkenas.github.com/docco/):
234
the original quick-and-dirty, hundred-line-long, literate-programming-style
@@ -62,6 +43,26 @@
6243
python setup.py install
6344
"""
6445

46+
from __future__ import absolute_import, print_function
47+
48+
# Import our external dependencies.
49+
import argparse
50+
import os
51+
import re
52+
import sys
53+
import time
54+
from os import path
55+
56+
import pygments
57+
from pygments import formatters, lexers
58+
59+
from markdown import markdown
60+
from pycco.generate_index import generate_index
61+
from pycco.languages import supported_languages
62+
from pycco_resources import css as pycco_css
63+
# This module contains all of our static resources.
64+
from pycco_resources import pycco_template
65+
6566
# === Main Documentation Generation Functions ===
6667

6768

0 commit comments

Comments
 (0)