Skip to content

Commit

Permalink
bugfix process page data
Browse files Browse the repository at this point in the history
  • Loading branch information
tkukurin authored Dec 20, 2024
1 parent bcfcc4c commit d2d055e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minihack/wiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def get_page_data(self, page: str) -> dict:
if page in self.exceptions:
return {}
if self.preprocess_input:
page = self.text_processor.process(input)
page = self.text_processor.process(page)
return self.wiki.get(page, {})


Expand Down

0 comments on commit d2d055e

Please sign in to comment.