From 7135b7fe8c6c31c1a1bc4331f3ad622651878c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Ricardo=20P=2E=20Galv=C3=A3o?= <104034355+samuelgalvao@users.noreply.github.com> Date: Fri, 12 May 2023 17:51:07 -0300 Subject: [PATCH] add a new function that display atributes --- sherlock/sites.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sherlock/sites.py b/sherlock/sites.py index 9bef100..5c53323 100644 --- a/sherlock/sites.py +++ b/sherlock/sites.py @@ -227,3 +227,12 @@ class SitesInformation: Length of sites object. """ return len(self.sites) + + +class Make(SiteInformation): + def show_atributes(self, att: list) -> str: + self.att_list = att + for at in self.att_list: + print(f"Ateubutes: \n{at}") + +