Fix typo - add .

Co-authored-by: Napalys Klicius <napalys@github.com>
This commit is contained in:
Joe Farebrother
2025-07-24 09:35:05 +01:00
committed by GitHub
parent 8ccb2ed059
commit a8cc14493f

View File

@@ -16,7 +16,7 @@ Code that is not intended to be called should raise <code>NotImplementedError</c
</overview>
<recommendation>
<p>If a <code>NotImplementedError</code> is intended to be raised, replace the use of <code>NotImplemented</code>
with that. If <code>NotImplemented</code> is intended to be returned rather than raised, replace the <code>raise</code> with <code>return NotImplemented</code>
with that. If <code>NotImplemented</code> is intended to be returned rather than raised, replace the <code>raise</code> with <code>return NotImplemented</code>.
</p>
</recommendation>
<example>