diff --git a/test/examples/inheritance/pkg/__init__.py b/test/examples/inheritance/pkg/__init__.py new file mode 100644 index 00000000..668dd9b6 --- /dev/null +++ b/test/examples/inheritance/pkg/__init__.py @@ -0,0 +1,6 @@ +from .module import Bar + + +class Foo(Bar): + def foo(self): + pass diff --git a/test/examples/inheritance/pkg/module.py b/test/examples/inheritance/pkg/module.py new file mode 100644 index 00000000..9da99ca1 --- /dev/null +++ b/test/examples/inheritance/pkg/module.py @@ -0,0 +1,4 @@ + +class Bar: + def bar(self): + pass