mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 02:23:38 +00:00
PEP8 Cleanups
This commit is contained in:
parent
c34442f5c1
commit
c3a13814f1
1 changed files with 5 additions and 4 deletions
|
@ -11,7 +11,7 @@
|
||||||
# SickRage is distributed in the hope that it will be useful,
|
# SickRage is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
@ -78,7 +78,7 @@ notifiers = [
|
||||||
prowl_notifier,
|
prowl_notifier,
|
||||||
pushover_notifier,
|
pushover_notifier,
|
||||||
boxcar_notifier,
|
boxcar_notifier,
|
||||||
boxcar2_notifier,
|
boxcar2_notifier,
|
||||||
nma_notifier,
|
nma_notifier,
|
||||||
pushalot_notifier,
|
pushalot_notifier,
|
||||||
pushbullet_notifier,
|
pushbullet_notifier,
|
||||||
|
@ -101,7 +101,8 @@ def notify_subtitle_download(ep_name, lang):
|
||||||
def notify_snatch(ep_name):
|
def notify_snatch(ep_name):
|
||||||
for n in notifiers:
|
for n in notifiers:
|
||||||
n.notify_snatch(ep_name)
|
n.notify_snatch(ep_name)
|
||||||
|
|
||||||
def notify_git_update(new_version = ""):
|
|
||||||
|
def notify_git_update(new_version=""):
|
||||||
for n in notifiers:
|
for n in notifiers:
|
||||||
n.notify_git_update(new_version)
|
n.notify_git_update(new_version)
|
||||||
|
|
Loading…
Reference in a new issue