mirror of
https://github.com/weechat/weechat.git
synced 2026-06-22 19:06:37 +02:00
tests: remove useless __init__ methods
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user