Skip to content

Commit

Permalink
Wrap long line.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Feb 19, 2014
1 parent a5f98fe commit ea7505e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion persistent/persistence.py
Expand Up @@ -390,7 +390,9 @@ def _p_accessed(self):
# detail, the '_cache' attribute of the jar. We made it a
# private API to avoid the cycle of keeping a reference to
# the cache on the persistent object.
if self.__jar is not None and self.__oid is not None and self._p_state >= 0:
if (self.__jar is not None and
self.__oid is not None and
self._p_state >= 0):
# This scenario arises in ZODB: ZODB.serialize.ObjectWriter
# can assign a jar and an oid to newly seen persistent objects,
# but because they are newly created, they aren't in the
Expand Down

0 comments on commit ea7505e

Please sign in to comment.