質問編集履歴

1

ミス

2020/02/06 07:41

投稿

shirai
shirai

スコア1290

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  class aaa(object):
4
4
 
5
- def aaa_func(self):
5
+ def __init__(self):
6
6
 
7
7
  print(type(self).__name__)
8
8
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  def __init__(self):
14
14
 
15
- aaa.aaa_func()
15
+ aaa()
16
16
 
17
17
 
18
18