def parse_video_info(self, response): ^ IndentationError: expected an indented block
时间: 2023-10-14 20:25:33 浏览: 114
这错误通常是由于缩进不正确导致的。在Python中,需要使用缩进来表示代码块,而不是使用大括号。请检查你的代码,确保在必要的地方正确地缩进。
例如,如果你的代码类似于以下示例:
```
def parse_video_info(self, response):
print("Function called")
```
那么你会收到 `IndentationError: expected an indented block` 错误,因为 `print` 语句后面没有缩进。你需要在 `print` 语句前面添加缩进,例如:
```
def parse_video_info(self, response):
print("Function called")
```
这样就可以避免出现缩进错误。
阅读全文