Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Converter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Converter
Commits
993af5be16eb
Commit
993af5be16eb
authored
3 months ago
by
Vincent Hatakeyama
Browse files
Options
Downloads
Patches
Plain Diff
mypy: handle __file__ is none
parent
ca9832fbd70a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!57
🔨✨ validator package does not assume a odoo.addons package name, provide full package name instead
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
validate.py
+6
-0
6 additions, 0 deletions
validate.py
with
6 additions
and
0 deletions
validate.py
+
6
−
0
View file @
993af5be
...
...
@@ -26,6 +26,9 @@
from
typing
import
Any
,
LiteralString
import
fastjsonschema
# type: ignore[import-untyped]
from
odoo.exceptions
import
UserError
# type: ignore[import-untyped]
import
fastjsonschema
# type: ignore[import-untyped]
_logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -78,6 +81,9 @@
for
schema
in
module
.
get_schemas
():
_add_schema
(
schemas
,
schema
)
else
:
if
module
.
__file__
is
None
:
# XXX maybe not the best type of error
raise
UserError
(
"
Module %s has no file
"
,
self
.
package_name
)
# Fallback on searching schema json files
schema_search_path
=
os
.
path
.
dirname
(
module
.
__file__
)
schema_search_path
=
os
.
path
.
abspath
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment