File "G:\python\github\GCC-master\utils\config.py", line 12 with open(config_file_env, 'G:/python/github/GCC-master/configs/env.yml') as stream: ^ IndentationError: expected an indented block
时间: 2023-11-25 07:06:14 浏览: 78
python出现”IndentationError: unexpected indent”错误解决办法
这个错误通常发生在代码缩进不正确的情况下。在Python中,缩进是非常重要的,因为它用于表示代码块的开始和结束。
根据您提供的错误信息,看起来代码缩进存在问题。请确保代码中的行12之前的所有代码都正确缩进。
示例代码应该类似于以下形式:
```python
def create_config(config_file_env, config_file_exp):
# Config for environment path
with open(config_file_env, 'r') as stream:
root_dir = yaml.safe_load(stream)['root_dir']
with open(config_file_exp, 'r') as stream:
config = yaml.safe_load(stream)
# Continue with the remaining code...
```
请注意,在Python中,缩进通常是使用制表符或空格进行的。建议使用4个空格作为缩进的标准。
如果问题仍然存在,请确保代码中没有混合使用制表符和空格缩进的情况,并检查其他行是否也存在缩进错误。
阅读全文