Skip to content

Commit a726b92

Browse files
committed
room question count fix
1 parent 87b55ea commit a726b92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tryhackme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
__version__ = "1.2.5"
2+
__version__ = "1.2.6"
33

44
from .errors import *
55
from .converters import *

tryhackme/room.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _from_data(self, data):
4848
def question_count(self):
4949
count = 0
5050
for task in self.tasks:
51-
count += task.questions_count
51+
count += task.question_count
5252
return count
5353
@property
5454
def precentage(self):

0 commit comments

Comments
 (0)