Sign in
fuchsia
/
third_party
/
github.com
/
python
/
mypy
/
7ec44526372cb6afab7c773d93fbb4d235b16c06
/
.
/
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