Skip to content
Snippets Groups Projects
Commit 5b9cf15c authored by Fawwaz Anugrah Wiradhika Dharmasatya's avatar Fawwaz Anugrah Wiradhika Dharmasatya
Browse files

feat: add __str__ representation for ProjectInfo

parent 7e04c532
No related merge requests found
......@@ -131,4 +131,10 @@ class ProjectInfo():
def __init__(self) -> None:
self.acl_class:list[ElementContext] = []
self.route_class:list[ElementContext] = []
def __repr__(self) -> str:
return self.__str__()
def __str__(self) -> str:
return f"ProjectInfo(acl_class={self.acl_class},route_class={self.route_class})"
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment