python-feedgen/feedgen/compat.py
Lars Kiesow 9026316391
Use isort to sort import
…so that they all have the same structure.
2018-03-04 20:05:29 +01:00

8 lines
139 B
Python

# -*- coding: utf-8 -*-
import sys
if sys.version_info[0] >= 3:
string_types = str
else:
string_types = basestring # noqa: F821