mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
11 lines
219 B
Python
11 lines
219 B
Python
import sys
|
|
|
|
if sys.platform == "platform_name_1": ... # OK
|
|
|
|
if sys.platform != "platform_name_2": ... # OK
|
|
|
|
if sys.platform in ["linux"]: ... # OK
|
|
|
|
if sys.platform > 3: ... # OK
|
|
|
|
if sys.platform == 10.12: ... # OK
|