Skip to content

Commit

Permalink
Added missing type annotation (#9712)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored Oct 11, 2023
1 parent bcb2ed4 commit dd9dd3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_cffi_src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# Load the cryptography __about__ to get the current package version
base_src = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
about = {}
about: dict = {}
with open(os.path.join(base_src, "cryptography", "__about__.py")) as f:
exec(f.read(), about)

Expand Down

0 comments on commit dd9dd3e

Please sign in to comment.