diff --git a/pytabular/document.py b/pytabular/document.py index 89b3cda..617e9d9 100644 --- a/pytabular/document.py +++ b/pytabular/document.py @@ -78,7 +78,6 @@ def __init__( self.roles_page: str = str() self.roles_page_url: str = roles_page_url - self.table_page: str = str() self.table_folder: str = table_folder diff --git a/pytabular/object.py b/pytabular/object.py index 8e39880..05262a6 100644 --- a/pytabular/object.py +++ b/pytabular/object.py @@ -156,4 +156,6 @@ def get(self, object_str: str, alt_result: str = "") -> str: try: return self.__getitem__(object_str) except Exception as e: - return alt_result + Console().print(e) + + return alt_result