diff --git a/NEWS.rst b/NEWS.rst index 73eb25435781c0a752b3f99970f4b2917f527fb5_TkVXUy5yc3Q=..21c524aaa2d0681e0dfc7eb71660597d76859ba8_TkVXUy5yc3Q= 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,11 @@ History ======= +16.8.2 +------ + +Fix incorrect prettier warning. + 16.8.1 ------ diff --git a/odoo_scripts/docker_prettier.py b/odoo_scripts/docker_prettier.py index 73eb25435781c0a752b3f99970f4b2917f527fb5_b2Rvb19zY3JpcHRzL2RvY2tlcl9wcmV0dGllci5weQ==..21c524aaa2d0681e0dfc7eb71660597d76859ba8_b2Rvb19zY3JpcHRzL2RvY2tlcl9wcmV0dGllci5weQ== 100644 --- a/odoo_scripts/docker_prettier.py +++ b/odoo_scripts/docker_prettier.py @@ -11,5 +11,5 @@ from .docker_client import DockerClient from .parsing import apply, basic_parser -__version__ = "1.1.0" +__version__ = "1.1.1" __date__ = "2022-02-17" @@ -15,5 +15,5 @@ __date__ = "2022-02-17" -__updated__ = "2022-09-29" +__updated__ = "2022-10-03" _logger = logging.getLogger(__name__) @@ -68,7 +68,7 @@ ) -def prettier(directory: str, write: bool, build_options, pull: bool = True): +def prettier(directory: str, write: bool, build_options): """Run prettier""" config = Config() @@ -114,7 +114,7 @@ "working_dir": path, "tty": True, }, - pull, + pull=False, )