pitt-crc/Jupyter-Authenticator

Remove use of exec

Closed this issue · 1 comments

Codacy detected an issue:

Message: Use of exec detected.

Currently on:

Seems like it's just being used to read the version number from version.py into the dictionary version_ns. A simple key-value entry would suffice in line 24:
version_ns[__version__] = 1.2.3.
The last part will obviously not be hard-coded.