Skip to content

Commit

Permalink
Docstring should be first.
Browse files Browse the repository at this point in the history
  • Loading branch information
subsetpark committed May 2, 2018
1 parent d9d6181 commit b1a6997
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions pycco/main.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,4 @@
#!/usr/bin/env python
from __future__ import absolute_import, print_function

# Import our external dependencies.
import argparse
import os
import re
import sys
import time
from os import path

import pygments
from markdown import markdown
from pycco.generate_index import generate_index
from pycco.languages import supported_languages
from pycco_resources import css as pycco_css
# This module contains all of our static resources.
from pycco_resources import pycco_template
from pygments import formatters, lexers

"""
"**Pycco**" is a Python port of [Docco](http://jashkenas.github.com/docco/):
the original quick-and-dirty, hundred-line-long, literate-programming-style
Expand Down Expand Up @@ -62,6 +43,26 @@
python setup.py install
"""

from __future__ import absolute_import, print_function

# Import our external dependencies.
import argparse
import os
import re
import sys
import time
from os import path

import pygments
from pygments import formatters, lexers

from markdown import markdown
from pycco.generate_index import generate_index
from pycco.languages import supported_languages
from pycco_resources import css as pycco_css
# This module contains all of our static resources.
from pycco_resources import pycco_template

# === Main Documentation Generation Functions ===


Expand Down

0 comments on commit b1a6997

Please sign in to comment.