mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
7 lines
82 B
Python
7 lines
82 B
Python
import six
|
|
from six import PY3
|
|
|
|
if six.PY3:
|
|
print("3")
|
|
if PY3:
|
|
print("3")
|