Update configuration.py

This commit is contained in:
Jacob Chapman
2022-05-04 22:53:58 -05:00
committed by Serene-Arc
parent 9545407896
commit 7eb2ab6d7d

View File

@@ -38,6 +38,10 @@ class Configuration(Namespace):
self.skip: list[str] = [] self.skip: list[str] = []
self.skip_domain: list[str] = [] self.skip_domain: list[str] = []
self.skip_subreddit: list[str] = [] self.skip_subreddit: list[str] = []
self.min_score = None
self.max_score = None
self.min_score_ratio = None
self.max_score_ratio = None
self.sort: str = 'hot' self.sort: str = 'hot'
self.submitted: bool = False self.submitted: bool = False
self.subscribed: bool = False self.subscribed: bool = False