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 3eaa517 commit 49a39f0Copy full SHA for 49a39f0
src/murfey/client/analyser.py
@@ -82,6 +82,9 @@ def __init__(
82
else {}
83
)
84
85
+ def __repr__(self) -> str:
86
+ return f"<Analyser ({self._basepath})"
87
+
88
def _find_extension(self, file_path: Path):
89
"""
90
Identifies the file extension and stores that information in the class.
src/murfey/client/rsync.py
@@ -109,7 +109,7 @@ def __init__(
109
self._statusbar = status_bar
110
111
def __repr__(self) -> str:
112
- return f"<RSyncer {self._basepath} → {self._remote} ({self.status})"
+ return f"<RSyncer ({self._basepath} → {self._remote}) [{self.status}]"
113
114
@classmethod
115
def from_rsyncer(cls, rsyncer: RSyncer, **kwargs):
0 commit comments