Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 9, 2024
1 parent a27aae6 commit cca80e3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/manifestoo_core/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from .manifest import InvalidManifest, Manifest, get_manifest_path

__all__ = [
"is_addon_dir",
"Addon",
"is_addon_dir",
]


Expand Down
4 changes: 2 additions & 2 deletions src/manifestoo_core/core_addons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
from ..odoo_series import OdooEdition, OdooSeries

__all__ = [
"get_core_addon_license",
"get_core_addons",
"is_core_addon",
"is_core_ce_addon",
"is_core_ee_addon",
"is_core_addon",
"get_core_addon_license",
]


Expand Down
2 changes: 1 addition & 1 deletion src/manifestoo_core/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
T = TypeVar("T")
VT = TypeVar("VT")

__all__ = ["Manifest", "InvalidManifest", "get_manifest_path", "MANIFEST_NAMES"]
__all__ = ["MANIFEST_NAMES", "InvalidManifest", "Manifest", "get_manifest_path"]

MANIFEST_NAMES = ("__manifest__.py", "__openerp__.py", "__terp__.py")

Expand Down
2 changes: 1 addition & 1 deletion src/manifestoo_core/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"POST_VERSION_STRATEGY_NINETYNINE_DEVN",
"POST_VERSION_STRATEGY_NONE",
"POST_VERSION_STRATEGY_P1_DEVN",
"metadata_from_addon_dir",
"addon_name_to_distribution_name",
"addon_name_to_requirement",
"distribution_name_to_addon_name",
"metadata_from_addon_dir",
]


Expand Down
2 changes: 1 addition & 1 deletion src/manifestoo_core/odoo_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from .exceptions import UnsupportedOdooSeries

__all__ = [
"OdooSeries",
"OdooEdition",
"OdooSeries",
"detect_from_addon_version",
"detect_from_addons_set",
]
Expand Down

0 comments on commit cca80e3

Please sign in to comment.