mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
15 lines
191 B
Python
15 lines
191 B
Python
import typing
|
|
from typing import final
|
|
|
|
|
|
@typing.final
|
|
class Class:
|
|
"""docstring"""
|
|
|
|
@final
|
|
def meth1(self):
|
|
"""docstring"""
|
|
|
|
def meth2(self):
|
|
"""docstring"""
|