Skip to content

Commit bc06fb2

Browse files
committed
Change Question Panel class name for stackoverflow
1 parent 9979700 commit bc06fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/arguments/utility.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
console = Console()
3737

38-
class QuestionsPanel_stackoverflow():
38+
class QuestionsPanelStackoverflow():
3939
def __init__(self):
4040
self.questions_data = [] # list( list( question_title, question_id, question_link )... )
4141
self.answer_data = defaultdict(lambda: False) # dict( question_id:list( body, link )) corresponding to self.questions_data
@@ -186,7 +186,7 @@ def get_ans(self, questions_list):
186186
This Function creates QuestionsPanel_stackoverflow class which supports
187187
Rendering, navigation, searching and redirecting capabilities
188188
"""
189-
stackoverflow_panel = QuestionsPanel_stackoverflow()
189+
stackoverflow_panel = QuestionsPanelStackoverflow()
190190
stackoverflow_panel.display_panel(questions_list)
191191
# Support for reddit searching can also be implemented from here
192192

0 commit comments

Comments
 (0)