mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
14 lines
155 B
Python
14 lines
155 B
Python
|
from os import * # NOQA
|
||
|
|
||
|
|
||
|
class Foo:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def bar(self):
|
||
|
pass
|
||
|
|
||
|
@property
|
||
|
def baz(self):
|
||
|
pass
|