catalyst: split combined import
authorDylan Baker <baker.dylan.c@gmail.com>
Sun, 13 Oct 2013 09:07:37 +0000 (02:07 -0700)
committerMatt Turner <mattst88@gmail.com>
Sat, 26 Oct 2013 17:22:51 +0000 (10:22 -0700)
commita9765320f1d51e2eed037a892bfd7c9e3e8b533d
tree8640955168c7c7fbbf9999c331a4cb7b5247bff7
parent1762a4c10f5e30cc98a32ef45a07f35b87257b55
catalyst: split combined import

Combining multiple modules into a single import is discouraged in
python's PEP8 style guide:

"""
Imports should usually be on separate lines, e.g.:

Yes: import os
     import sys

     No:  import sys, os
"""

Reviewed-by: Matt Turner <mattst88@gmail.com>
catalyst