Skip to content

Commit

Permalink
fix: 🐛 fix version variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
djdembeck committed Sep 28, 2021
1 parent af8dab8 commit ee618dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Contents/Code/__init__.py
Expand Up @@ -8,9 +8,9 @@
from search_tools import SearchTool
from update_tools import UpdateTool
from urls import SiteUrl
from _version import __version__
from _version import version

VERSION_NO = __version__
VERSION_NO = version

# Starting value for score before deductions are taken.
INITIAL_SCORE = 100
Expand Down
2 changes: 1 addition & 1 deletion Contents/Code/_version.py
@@ -1 +1 @@
__version__ = "0.1.0"
version = "0.1.0"

0 comments on commit ee618dc

Please sign in to comment.