Skip to content

Commit 2520df1

Browse files
committed
Moving ActionError into actionlbirary
1 parent 9246d90 commit 2520df1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/prpy/action/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#!/usr/bin/env python
22

3-
from actionlibrary import ActionLibrary, ActionMethod
4-
from exceptions import ActionError
3+
from actionlibrary import ActionLibrary, ActionMethod, ActionError

src/prpy/action/actionlibrary.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env python
22

3+
class ActionError(Exception):
4+
pass
5+
36
class ActionMethod(object):
47

58
def __init__(self, func):

src/prpy/action/exceptions.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)