diff --git a/grizzly/common/fuzzmanager.py b/grizzly/common/fuzzmanager.py index 878e9083..07097107 100644 --- a/grizzly/common/fuzzmanager.py +++ b/grizzly/common/fuzzmanager.py @@ -293,7 +293,7 @@ def __getattr__(self, name: str) -> Any: self._data = self._coll.get(self._url).json() if name not in self._data: raise AttributeError( - f"'{type(self).__name__,}' object has no attribute '{name}'" + f"'{type(self).__name__}' object has no attribute '{name}'" f" (has: {list(self._data)})" ) return self._data[name] diff --git a/grizzly/common/status_reporter.py b/grizzly/common/status_reporter.py index 9b12695a..30aae81e 100644 --- a/grizzly/common/status_reporter.py +++ b/grizzly/common/status_reporter.py @@ -924,7 +924,7 @@ def main(argv: Optional[List[str]] = None) -> int: "--time-limit", type=int, help="Maximum age of reports in seconds. Use zero for no limit." - f" (default: {', '.join(f'{k}: {v}' for k, v in report_types.items())})", + f" (default: {', '.join(f'{k}: {v}' for k, v in report_types.items())})", ) parser.add_argument( "--tracebacks",