diff options
| author | root <root@turin.home> | 2022-01-30 15:18:21 +0000 |
|---|---|---|
| committer | root <root@turin.home> | 2022-01-30 15:18:21 +0000 |
| commit | 214cf4da27be2c4845df7396aa22efa184b1adc7 (patch) | |
| tree | 3f283e2c11009a929325e4762831a301a6a7c938 | |
| parent | f751dc8881f2cdc20facca542f07e6728421161f (diff) | |
Minor error
| -rw-r--r-- | weather.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,7 +35,8 @@ class weather_met_no(weather): # sending-user-agent-using-requests-library-in-python # https://api.met.no/doc/FAQ self.HEADERS = {"User-Agent": "TopologicalMap"} - super.__init__() + # Call constructor from superclass + super().__init__() def get_temp(self): # https://docs.python-requests.org/en/latest/ |
