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 7236487 commit d14f618Copy full SHA for d14f618
src/posit/connect/_api.py
@@ -144,14 +144,6 @@ def __init__(
144
self._ctx = ctx
145
self._path = path
146
147
- # TODO-barret-future: Keep this method for now, but consider removing it in the future (or adopting it into `Active` class)
148
- def __str__(self) -> str:
149
- return self.__repr__()
150
-
151
- def __repr__(self) -> str:
152
- # CLASSNAME - v1/content/123/path; {'guid': '123', 'name': 'My Content'}
153
- return repr(f"{self.__class__.__name__} - {self._path}; {super().__repr__()}")
154
155
156
T = TypeVar("T", bound="ReadOnlyDict")
157
"""A type variable that is bound to the `Active` class"""
0 commit comments