mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-05 05:41:14 +02:00
9 lines
139 B
Python
9 lines
139 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
|
|
if sys.version_info[0] >= 3:
|
|
string_types = str
|
|
else:
|
|
string_types = basestring # noqa: F821
|