rename Backend to BaseBackend
This commit is contained in:
parent
e3ad695346
commit
a09658d6cf
11 changed files with 38 additions and 38 deletions
|
|
@ -22,12 +22,12 @@ import urllib2
|
|||
from xml.dom import minidom
|
||||
|
||||
# TODO store datetime objects instead of strings
|
||||
from datetime import datetime
|
||||
# from datetime import datetime
|
||||
|
||||
from weboob.backend import Backend
|
||||
from weboob.capabilities.weather import ICapWeather, CityNotFound, City, Current, Forecast
|
||||
from weboob.backend import BaseBackend
|
||||
from weboob.capabilities.weather import ICapWeather, CityNotFound, Current, Forecast
|
||||
|
||||
class YWeatherBackend(Backend, ICapWeather):
|
||||
class YWeatherBackend(BaseBackend, ICapWeather):
|
||||
NAME = 'yweather'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@peerfuse.org'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue