C:\android-ndk-r25c-windows\android-ndk-r25c\simpleperf>python report_html.py File "report_html.py", line 43 if not isinstance(output_path, (str, Path)): ^ IndentationError: expected an indented block
时间: 2024-02-24 12:00:26 浏览: 191
report.html
这个错误提示表明 Python 解释器期望在 `if` 语句后面有一个缩进块,但是你的代码中并没有缩进块。
你需要在 `if` 语句后面添加一个缩进块,缩进块中包含 `if` 语句的执行代码。例如:
```python
def __init__(self, output_path):
if not isinstance(output_path, (str, Path)):
raise TypeError("output_path must be a string or a Path object.")
self.output_path = Path(output_path)
```
在这个例子中,缩进块使用了 4 个空格作为缩进。你需要确保在整个代码中使用相同数量的缩进。
阅读全文