Skip to content

Commit

Permalink
Fix to __dict__ conditional statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bw27492 committed Jun 11, 2024
1 parent 8eacf69 commit ad8223c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/python/src/bailo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from __future__ import annotations


# Package Version 2.3.1
__version__ = "2.3.1"
# Package Version 2.3.4
__version__ = "2.3.4"


from bailo.core.agent import Agent, PkiAgent, TokenAgent
Expand Down
2 changes: 1 addition & 1 deletion lib/python/src/bailo/helper/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def version(self):

@version.setter
def version(self, value):
if ("__version_obj" not in self.__dict__) and ("__version_raw" not in self.__dict__):
if ("_Release__version_obj" not in self.__dict__) and ("_Release__version_raw" not in self.__dict__):
if isinstance(value, str):
if value.startswith("v"):
value = value[1:]
Expand Down

0 comments on commit ad8223c

Please sign in to comment.