Sign in
fuchsia
/
third_party
/
github.com
/
python
/
mypy
/
efecd591e4198232f35e1db66bf99e56fc2f068b
/
.
/
test-data
/
unit
/
plugins
/
customize_mro.py
blob: 0f2396d98965c8f6871cda174550e53a50477a9d [
file
] [
log
] [
blame
]
from
mypy
.
plugin
import
Plugin
class
DummyPlugin
(
Plugin
):
def
get_customize_class_mro_hook
(
self
,
fullname
):
def
analyze
(
classdef_ctx
):
pass
return
analyze
def
plugin
(
version
):
return
DummyPlugin