Merge pull request #3 from wmbolle/fix-pylint-issues
Fix some pylint issues.
This commit is contained in:
commit
0744203beb
|
@ -1,3 +1,7 @@
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
|
|
||||||
from ruamel.yaml import YAML
|
from ruamel.yaml import YAML
|
||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import pwd
|
import pwd
|
||||||
import json
|
import json
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,9 @@ from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
class Scheduler():
|
class Scheduler():
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
__shared_state = dict()
|
__shared_state = dict()
|
||||||
__data = dict()
|
__data = dict()
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
|
@ -4,6 +4,9 @@ import os
|
||||||
AVAILABLE_TOOLS = {}
|
AVAILABLE_TOOLS = {}
|
||||||
|
|
||||||
def register_tool(name):
|
def register_tool(name):
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
def decorator(Cls):
|
def decorator(Cls):
|
||||||
AVAILABLE_TOOLS.update({name: Cls})
|
AVAILABLE_TOOLS.update({name: Cls})
|
||||||
return decorator
|
return decorator
|
||||||
|
|
|
@ -3,8 +3,8 @@ from backive.core.tool import AVAILABLE_TOOLS, register_tool
|
||||||
|
|
||||||
@register_tool("rsync")
|
@register_tool("rsync")
|
||||||
class Rsync:
|
class Rsync:
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
def __init__(self, options):
|
def __init__(self, options):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -1,4 +1,3 @@
|
||||||
import setuptools
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,5 +42,3 @@ setup_info = dict(
|
||||||
)
|
)
|
||||||
|
|
||||||
setup(**setup_info)
|
setup(**setup_info)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import os
|
import os
|
||||||
import asyncio
|
import asyncio
|
||||||
|
@ -6,6 +10,9 @@ from backive.core.events import EventInterface
|
||||||
|
|
||||||
|
|
||||||
class TestEvents(unittest.TestCase):
|
class TestEvents(unittest.TestCase):
|
||||||
|
"""
|
||||||
|
TODO
|
||||||
|
"""
|
||||||
def set_data(self, data):
|
def set_data(self, data):
|
||||||
self.data = data
|
self.data = data
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue