Skip to content

Commit

Permalink
Re add missed wifi_country from merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
sjefferson99 committed Apr 25, 2024
1 parent 34504bb commit 41ee5b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions enviro/config_defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ def add_missing_config_settings():
warn_missing_config_setting("usb_power_temperature_offset")
config.usb_power_temperature_offset = DEFAULT_USB_POWER_TEMPERATURE_OFFSET

try:
config.wifi_country
except AttributeError:
warn_missing_config_setting("wifi_country")
config.wifi_country = "GB"

try:
config.wunderground_id
except AttributeError:
Expand Down

0 comments on commit 41ee5b6

Please sign in to comment.