Skip to content

Commit

Permalink
Remove leftover reference to checkCache
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoshanuikabundi authored Aug 8, 2024
1 parent 2f46987 commit c4f4dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdbfixer/pdbfixer.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def _downloadCCDDefinition(self, residueName: str) -> Optional[CCDResidueDefinit
"""
residueName = residueName.upper()

if checkCache and residueName in self._ccdCache:
if residueName in self._ccdCache:
return self._ccdCache[residueName]

try:
Expand Down

0 comments on commit c4f4dbe

Please sign in to comment.