Skip to content

Commit f7def6a

Browse files
Add type ignore comment in __manifest__.py and import ValidationError in pickup_request.py
1 parent 4e136f3 commit f7def6a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

records_management/__manifest__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@
4545
],
4646
'installable': True,
4747
'application': True
48-
}
48+
}
49+
# type: ignore

records_management/models/pickup_request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from odoo import models, fields, api
2+
from odoo.exceptions import ValidationError
23

34
class PickupRequest(models.Model):
45
"""

0 commit comments

Comments
 (0)