summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Smith <zd@zdsmith.com>2018-04-25 20:25:30 -0400
committerZach Smith <zd@zdsmith.com>2018-04-25 20:25:30 -0400
commitbedb3da55d611153388004184222a26190ce3202 (patch)
tree8d52be66c22932df1041a4138964b07018422717
parenta761ddff2bc6eb36bf9ef75733bb4dc4177c5d7a (diff)
downloadpycco-bedb3da55d611153388004184222a26190ce3202.tar.gz
Sort imports
-rw-r--r--pycco/main.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pycco/main.py b/pycco/main.py
index 735d7eb..affd38d 100644
--- a/pycco/main.py
+++ b/pycco/main.py
@@ -1,21 +1,21 @@
#!/usr/bin/env python
from __future__ import print_function
-# This module contains all of our static resources.
-from pycco_resources import pycco_template, css as pycco_css
-
# Import our external dependencies.
import optparse
import os
-import pygments
import re
import sys
import time
-import pycco.generate_index as generate_index
+from os import path
+import pycco.generate_index as generate_index
+import pygments
from markdown import markdown
-from os import path
-from pygments import lexers, formatters
+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/):