Skip to content

Commit

Permalink
copyright fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Aug 9, 2019
1 parent 179d8ee commit 0d36eac
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion atasker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"
Expand Down
5 changes: 5 additions & 0 deletions atasker/co.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"

from atasker import task_supervisor

from atasker import TASK_NORMAL, TT_MP
Expand Down
2 changes: 1 addition & 1 deletion atasker/f.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"
Expand Down
2 changes: 1 addition & 1 deletion atasker/supervisor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"
Expand Down
2 changes: 1 addition & 1 deletion atasker/threads.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"
Expand Down
2 changes: 1 addition & 1 deletion atasker/workers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"
Expand Down
5 changes: 5 additions & 0 deletions tests/mp.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"

def test(*args, **kwargs):
print('test mp method {} {}'.format(args, kwargs))
return 999
Expand Down
5 changes: 5 additions & 0 deletions tests/mpworker.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"

from atasker import BackgroundIntervalWorker


Expand Down
5 changes: 5 additions & 0 deletions tests/test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/usr/bin/env python3

__author__ = "Altertech Group, https://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.2.10"

from pathlib import Path

import sys
Expand Down

0 comments on commit 0d36eac

Please sign in to comment.