mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
15 lines
146 B
Python
15 lines
146 B
Python
from os.path import abspath
|
|
|
|
x = abspath(__file__)
|
|
|
|
|
|
import os
|
|
|
|
|
|
y = os.path.abspath(__file__)
|
|
|
|
|
|
from os import path
|
|
|
|
|
|
z = path.abspath(__file__)
|