Skip to content

Commit

Permalink
[MIG] sequence_python: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspaulb committed Nov 12, 2024
1 parent e9aeae3 commit 240dbae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sequence_python/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"summary": """Calculate a sequence number from a Python expression""",
"author": "Sunflower IT,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/server-tools",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"category": "Generic Modules",
"depends": ["base"],
Expand Down
2 changes: 1 addition & 1 deletion sequence_python/models/ir_sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ def get_next_char(self, number_next):
+ interpolated_suffix
)
else:
return super(IrSequence, self).get_next_char(number_next)
return super().get_next_char(number_next)

0 comments on commit 240dbae

Please sign in to comment.