diff options
| author | Brian Potchik <brian@vector35.com> | 2022-02-18 13:18:48 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2022-02-18 13:18:48 -0500 |
| commit | 0a4ed99e02766338d4d04f98aacb6578e863dc2b (patch) | |
| tree | bc5be7f8a80beaa8fbcd2c0f8a72c981a3b72fa0 /python | |
| parent | 97c163e5aeaaaade69e278a203ce92a4ce75e7f4 (diff) | |
Fix analysis_info repr.
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 13a34113..e94aff30 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -375,7 +375,7 @@ class AnalysisInfo: active_info: List[ActiveAnalysisInfo] def __repr__(self): - return f"<AnalysisInfo {self.state}, analysis_time {self.analysis_time}, active_info {len(self.active_info)}>" + return f"<AnalysisInfo {self.state}, analysis_time {self.analysis_time}, active_info {self.active_info}>" @dataclass(frozen=True) |
