Skip to content

Commit

Permalink
Fix python version check suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Feb 24, 2024
1 parent 935b431 commit 26bd390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_python_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def check():
if sys.version_info < PREFERRED_MINIMUM_VERSION:
print(
"[WARNING] Your Python version can still be used with your current DSMR-reader version. "
"However, Python {} or higher is preferred. Consider using it for new installations in the future.".format(
"However, Python {} is preferred. Consider using it for new installations in the future.".format(
".".join([str(x) for x in PREFERRED_MINIMUM_VERSION])
)
)
Expand Down

0 comments on commit 26bd390

Please sign in to comment.