mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
14 lines
152 B
Python
14 lines
152 B
Python
from os import (
|
|
path,
|
|
name as OsName
|
|
)
|
|
|
|
def foo(x):
|
|
pass
|
|
|
|
class Foo:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def foo(self):
|
|
pass
|