diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-10-07 18:22:33 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-10-07 18:22:33 +0200 |
commit | ca2c11dea7e2ceeab94a192255ad1ec33e2718a2 (patch) | |
tree | 15af4e48c96e87c85e953424d98f3e9da588c107 /tests | |
parent | 703534034db1b5b569feb2b90c9f2129c43ae86f (diff) | |
download | weechat-ca2c11dea7e2ceeab94a192255ad1ec33e2718a2.zip |
tests: remove useless __init__ methods
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/scripts/python/unparse.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/scripts/python/unparse.py b/tests/scripts/python/unparse.py index 4176bd340..25d6234fa 100755 --- a/tests/scripts/python/unparse.py +++ b/tests/scripts/python/unparse.py @@ -309,9 +309,6 @@ class UnparsePerl(UnparsePython): the script to test WeeChat scripting API). """ - def __init__(self, *args, **kwargs): - super(UnparsePerl, self).__init__(*args, **kwargs) - def _ast_assign(self, node): """Add an AST Assign in output.""" self.add( @@ -468,9 +465,6 @@ class UnparseRuby(UnparsePython): the script to test WeeChat scripting API). """ - def __init__(self, *args, **kwargs): - super(UnparseRuby, self).__init__(*args, **kwargs) - def _ast_attribute(self, node): """Add an AST Attribute in output.""" self.add( @@ -961,9 +955,6 @@ class UnparseJavascript(UnparsePython): the script to test WeeChat scripting API). """ - def __init__(self, *args, **kwargs): - super(UnparseJavascript, self).__init__(*args, **kwargs) - def _ast_dict(self, node): """Add an AST Dict in output.""" self.add( @@ -1024,9 +1015,6 @@ class UnparsePhp(UnparsePython): the script to test WeeChat scripting API). """ - def __init__(self, *args, **kwargs): - super(UnparsePhp, self).__init__(*args, **kwargs) - def _ast_assign(self, node): """Add an AST Assign in output.""" self.add( |