Skip to content

Commit

Permalink
*: Fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
etobella committed Oct 29, 2023
1 parent 11ee3ab commit 27a9e76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auth_jwt/views/auth_jwt_validator_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<field name="name">auth.jwt.validator.tree</field>
<field name="model">auth.jwt.validator</field>
<field name="arch" type="xml">
<tree string="arch">
<tree>
<field name="name" />
<field name="issuer" />
<field name="audience" />
Expand Down
2 changes: 1 addition & 1 deletion auth_user_case_insensitive/tests/test_res_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_login_login_is_lowercased(self):
"""It should verify the login is set to lowercase on login"""
rec_id = self._new_record()
# We have to commit this cursor, because `_login` uses a fresh cursor
self.env.cr.commit()
self.env.cr.commit() # pylint: disable=E8102
with mute_logger("odoo.addons.auth_ldap.models.res_company_ldap"):
res_id = self.model_obj._login(
self.env.registry.db_name,
Expand Down

0 comments on commit 27a9e76

Please sign in to comment.