We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea149ca commit ba39160Copy full SHA for ba39160
jobfunnel/config/search.py
@@ -75,7 +75,7 @@ def query_string(self) -> str:
75
def validate(self):
76
"""We need to have the right information set, not mixing stuff
77
"""
78
- assert self.province_or_state, "Province/State not set"
+ assert self.province_or_state is not None, "Province/State not set"
79
assert self.city, "City not set"
80
assert self.locale, "Locale not set"
81
assert self.providers and len(self.providers) >= 1, "Providers not set"
0 commit comments