mirror of
https://github.com/powerline/powerline.git
synced 2025-11-30 18:33:31 +01:00
7 lines
168 B
Python
7 lines
168 B
Python
# vim:fileencoding=utf-8:noet
|
|
import sys
|
|
if sys.version_info < (2, 7):
|
|
from unittest2 import TestCase, main # NOQA
|
|
else:
|
|
from unittest import TestCase, main # NOQA
|