diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 18:05:09 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 18:05:09 +0200 |
commit | bfc889d29afdd902b5df30336ff73e484a3592fc (patch) | |
tree | 9f0d1cc12258be9ba8998fae688a6de2a8b87b99 /libpathod/language/actions.py | |
parent | ce0e2b12b4ca26143af3bbaa7c0ff7aa6f011d39 (diff) | |
download | mitmproxy-bfc889d29afdd902b5df30336ff73e484a3592fc.tar.gz mitmproxy-bfc889d29afdd902b5df30336ff73e484a3592fc.tar.bz2 mitmproxy-bfc889d29afdd902b5df30336ff73e484a3592fc.zip |
fix prospector code smells
Diffstat (limited to 'libpathod/language/actions.py')
-rw-r--r-- | libpathod/language/actions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpathod/language/actions.py b/libpathod/language/actions.py index f825d0cc..7bb61005 100644 --- a/libpathod/language/actions.py +++ b/libpathod/language/actions.py @@ -71,7 +71,7 @@ class PauseAt(_Action): def intermediate(self, settings): return (self.offset, "pause", self.seconds) - def freeze(self, settings): + def freeze(self, settings_): return self @@ -91,7 +91,7 @@ class DisconnectAt(_Action): def intermediate(self, settings): return (self.offset, "disconnect") - def freeze(self, settings): + def freeze(self, settings_): return self |