Skip to content
Snippets Groups Projects
Commit 993af5be16eb authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:shirt: mypy: handle __file__ is none

parent ca9832fbd70a
No related branches found
No related tags found
1 merge request!57🔨✨ validator package does not assume a odoo.addons package name, provide full package name instead
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment