Skip to content

Commit df42824

Browse files
committed
Fixing travis errors that were merged
1 parent 20e460c commit df42824

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

f5/utils/decorators.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919

2020
from f5.utils.util_exceptions import UtilError
2121

22+
2223
class MaximumAttemptsReached(UtilError):
23-
def __init__(*args, **kwargs):
24-
# TODO: Add logging here!
24+
def __init__(self, *args, **kwargs):
25+
# TODO(Add logging here!)
2526
super(MaximumAttemptsReached, self).__init__(*args, **kwargs)
2627

2728

f5/utils/util_exceptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
from f5.sdk_exception import F5SDKError
1717

18+
1819
class UtilError(F5SDKError):
1920
'''A base exception for all utility exceptions in this library.'''
20-
def __init__(self, *arg, **kwargs):
21+
def __init__(self, *args, **kwargs):
2122
super(UtilError, self).__init__(*args, **kwargs)

0 commit comments

Comments
 (0)