Skip to content

Commit

Permalink
feat: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Apr 16, 2023
1 parent d8ff505 commit df40ac8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plone/uuid/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
try:
from Acquisition import aq_base
except ImportError:
aq_base = lambda v: v # soft-dependency on Zope2, fallback

def aq_base(obj):
# soft-dependency on Zope2, fallback
return obj


@adapter(IAttributeUUID, IObjectCreatedEvent)
Expand Down

0 comments on commit df40ac8

Please sign in to comment.