aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/language/actions.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-06-18 18:12:11 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-06-18 18:15:22 +0200
commit7a3623a14ee2ffa021c1a2a8f337826e055b328d (patch)
tree7abdfdba135ea1f6022a8a72b1c52371f76fbea2 /libpathod/language/actions.py
parent90aeda47aead50110ee4a0a29b01edd170539818 (diff)
downloadmitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.tar.gz
mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.tar.bz2
mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.zip
fix pep8 whitespace
Diffstat (limited to 'libpathod/language/actions.py')
-rw-r--r--libpathod/language/actions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/libpathod/language/actions.py b/libpathod/language/actions.py
index 7bb61005..34a9bafb 100644
--- a/libpathod/language/actions.py
+++ b/libpathod/language/actions.py
@@ -8,6 +8,7 @@ from . import base
class _Action(base.Token):
+
"""
An action that operates on the raw data stream of the message. All
actions have one thing in common: an offset that specifies where the
@@ -76,6 +77,7 @@ class PauseAt(_Action):
class DisconnectAt(_Action):
+
def __init__(self, offset):
_Action.__init__(self, offset)