Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, arg):
"""
Constructor.
Largely simple/barebones constructor that calls the Base()
and sets up the executable name.
"""
super(Echo, self).__init__(arg)
self.dp = pfmisc.debug(
verbosity = self.verbosity,
within = 'Echo',
syslog = False
)
def echo(opt={}):
return Echo(opt).run()