【发布时间】:2020-12-23 14:13:18
【问题描述】:
我在这段代码(来自https://www.django-rest-framework.org/tutorial/3-class-based-views/)上有一条pylint消息(w0707):
class SnippetDetail(APIView):
"""
Retrieve, update or delete a snippet instance.
"""
def get_object(self, pk):
try:
return Snippet.objects.get(pk=pk)
except Snippet.DoesNotExist:
raise Http404
消息是:Consider explicitly re-raising using the 'from' keyword
我不太明白如何解决问题。
提前感谢您的帮助
【问题讨论】:
-
我实现了这个警告。在此处查看更多详细信息和背景:blog.ram.rachum.com/post/621791438475296768/…