We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9492e commit c1c4dffCopy full SHA for c1c4dff
pacai/util/alias.py
@@ -40,6 +40,9 @@ def __init__(self,
40
Alias._alias_map[short] = long
41
Alias._all_aliases.append(self)
42
43
+ def __repr__(self) -> str:
44
+ return f"('{self.short}' -> '{self.long}')"
45
+
46
def lookup(short: str, default: str | None = None) -> str:
47
"""
48
Lookup the long name for an alias.
0 commit comments