File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3535
3636console = 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
You can’t perform that action at this time.
0 commit comments