Skip to content

Commit

Permalink
[client] Adjust version number for release
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelHassine committed Apr 28, 2024
1 parent a554db6 commit e1ee439
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyobas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "4.0.0"
__version__ = "3.5.1"

from pyobas._version import ( # noqa: F401
__author__,
Expand Down
2 changes: 1 addition & 1 deletion pyobas/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
__email__ = "[email protected]"
__license__ = "Apache 2.0"
__title__ = "python-openbas"
__version__ = "4.0.0"
__version__ = "3.5.1"
2 changes: 1 addition & 1 deletion pyobas/contracts/contract_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __post_init__(self):

@dataclass
class ContractCardinalityElement(ContractElement, ABC):
cardinality: ContractCardinality = ContractCardinality.One
cardinality: str = ContractCardinality.One
defaultValue: List[str] = field(default_factory=list)


Expand Down
1 change: 0 additions & 1 deletion pyobas/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ def schedule(self, message_callback, delay):
self.config_helper.get_conf("collector_id"),
{"collector_last_execution": now},
)

# Then schedule the next execution
self.scheduler.enter(
delay, 1, self._schedule, (self.scheduler, message_callback, delay)
Expand Down

0 comments on commit e1ee439

Please sign in to comment.