Private GIT

Skip to content
Snippets Groups Projects
Commit 010f04c4 authored by labrys's avatar labrys
Browse files

PEP 8: Optimize imports

PEP 263: Add encoding declaration
parent d8a52c1f
No related branches found
No related tags found
No related merge requests found
# coding=utf-8
# This file is part of SickRage. # This file is part of SickRage.
# #
# URL: https://sickrage.github.io # URL: https://SickRage.GitHub.io
# Git: https://github.com/SickRage/SickRage.git # Git: https://github.com/SickRage/SickRage.git
# #
# SickRage is free software: you can redistribute it and/or modify # SickRage is free software: you can redistribute it and/or modify
...@@ -21,17 +22,17 @@ Test restart ...@@ -21,17 +22,17 @@ Test restart
""" """
from __future__ import print_function from __future__ import print_function
import os import os
import sys import sys
import unittest
sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../lib'))) sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../lib')))
sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../..'))) sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../..')))
import sickbeard import sickbeard
from sickbeard.event_queue import Events from sickbeard.event_queue import Events
from sickrage.system.Restart import Restart from sickrage.system.Restart import Restart
import unittest
class RestartTests(unittest.TestCase): class RestartTests(unittest.TestCase):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment