blob: 89826179a95cd83a2c56ebe24491c5a6805e9e7c (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""bla"""
from ..n.non import non_init_parent_called
class Aaaa(non_init_parent_called.AAAA): # [too-few-public-methods]
"""test dotted name in ancestors"""
def __init__(self):
non_init_parent_called.AAAA.__init__(self)
|