Argument parsing (agent manager is broken)

This commit is contained in:
Cyber MacGeddon 2024-11-10 10:06:31 +00:00
parent 4cce274428
commit bb7ac5d380
3 changed files with 116 additions and 2 deletions

View file

@ -39,8 +39,9 @@ class BaseProcessor:
def __del__(self):
if self.client:
self.client.close()
if hasattr(self, "client"):
if self.client:
self.client.close()
@staticmethod
def add_args(parser):