Skip to content

Commit

Permalink
moving filter var creation before parse_pargs to fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-bell committed Oct 26, 2020
1 parent 3ab4fe8 commit 9c0de34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion we_get/modules/the_pirate_bay.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def __init__(self, pargs):
self.pargs = pargs
self.action = None
self.search_query = None
self.filter = ""
self.module = Module()
self.parse_pargs()
self.items = dict()
self.filter = ""

def parse_pargs(self):
for opt in self.pargs:
Expand Down

0 comments on commit 9c0de34

Please sign in to comment.