Skip to content

Commit

Permalink
[IMP] website_event_attendee_signup: pre-commit auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Medetw authored and em230418 committed Oct 25, 2024
1 parent ef5a8d9 commit f9c4855
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions website_event_attendee_signup/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Auto Sign Up Event guest
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-it--projects--llc%2Fwebsite--addons-lightgray.png?logo=github
:target: https://github.com/it-projects-llc/website-addons/tree/14.0/website_event_attendee_signup
:target: https://github.com/it-projects-llc/website-addons/tree/17.0/website_event_attendee_signup
:alt: it-projects-llc/website-addons

|badge1| |badge2| |badge3|
Expand Down Expand Up @@ -79,7 +79,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/it-projects-llc/website-addons/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/it-projects-llc/website-addons/issues/new?body=module:%20website_event_attendee_signup%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/it-projects-llc/website-addons/issues/new?body=module:%20website_event_attendee_signup%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Expand All @@ -102,6 +102,6 @@ Contributors
Maintainers
-----------

This module is part of the `it-projects-llc/website-addons <https://github.com/it-projects-llc/website-addons/tree/14.0/website_event_attendee_signup>`_ project on GitHub.
This module is part of the `it-projects-llc/website-addons <https://github.com/it-projects-llc/website-addons/tree/17.0/website_event_attendee_signup>`_ project on GitHub.

You are welcome to contribute.
2 changes: 1 addition & 1 deletion website_event_attendee_signup/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"summary": "Attendees can use portal dashboard to make extra purchases for the event, for example.", # noqa: E501
"category": "Marketing",
"images": ["images/banner.jpg"],
"version": "14.0.1.0.0",
"version": "17.0.1.0.0",
"author": "IT-Projects LLC",
"support": "[email protected]",
"website": "https://github.com/it-projects-llc/website-addons",
Expand Down
2 changes: 1 addition & 1 deletion website_event_attendee_signup/models/event_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class EventRegistration(models.Model):

@api.model
def create(self, vals):
res = super(EventRegistration, self).create(vals)
res = super().create(vals)

if res.event_id.attendee_signup and res.attendee_partner_id:
login = res.attendee_partner_id.email
Expand Down
2 changes: 1 addition & 1 deletion website_event_attendee_signup/tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class TestCase(TransactionCase):
def setUp(self):
super(TestCase, self).setUp()
super().setUp()
self.event = self.env["event.event"].create(
{
"name": "TestEvent",
Expand Down

0 comments on commit f9c4855

Please sign in to comment.