Skip to content

Commit

Permalink
Minor edit for code clarification in annotationlib. (python#124805)
Browse files Browse the repository at this point in the history
  • Loading branch information
larryhastings authored Sep 30, 2024
1 parent 7e7223e commit 626d706
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Lib/annotationlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,11 +685,9 @@ def get_annotations(
case Format.FORWARDREF:
# For FORWARDREF, we use __annotations__ if it exists
try:
ann = _get_dunder_annotations(obj)
return dict(_get_dunder_annotations(obj))
except NameError:
pass
else:
return dict(ann)

# But if __annotations__ threw a NameError, we try calling __annotate__
ann = _get_and_call_annotate(obj, format)
Expand Down

0 comments on commit 626d706

Please sign in to comment.