gpt4 book ai didi

python - 考虑使用 'from' 关键字 pylint 建议明确重新提高

转载 作者:行者123 更新时间:2023-12-04 14:44:07 25 4
gpt4 key购买 nike

我有一个小的 python 代码,我在其中使用了异常处理。

def handler(event):
try:
client = boto3.client('dynamodb')
response = client.scan(TableName=os.environ["datapipeline_table"])
return response
except Exception as error:
logging.exception("GetPipelinesError: %s",json.dumps(error))
raise GetPipelinesError(json.dumps({"httpStatus": 400, "message": "Unable to fetch Pipelines"}))

class GetPipelinesError(Exception):
pass
pylint 警告给了我“考虑使用 'from' 关键字明确重新提高”。
我很少看到其他帖子,他们使用 from 并引发错误。我做了这样的修改
except Exception as GetPipelinesError:
logging.exception("GetPipelinesError: %s",json.dumps(GetPipelinesError))
raise json.dumps({"httpStatus": 400, "message": "Unable to fetch Pipelines"}) from GetPipelinesError
这是正确的做法吗?

最佳答案

raise的目的- from是到 chain exceptions .正确的syntax你的情况是:

except Exception as error:
raise GetPipelinesError(json.dumps(
{"httpStatus": 400, "message": "Unable to fetch Pipelines"})) from error
后面的表达式 raisefrom必须是异常类或实例。

关于python - 考虑使用 'from' 关键字 pylint 建议明确重新提高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66995878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com