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

:ambulance: fix docker_prettier incorrect warning

parent 73eb25435781
No related branches found
No related tags found
1 merge request!136🚑 fix docker_prettier incorrect warning
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
History History
======= =======
16.8.2
------
Fix incorrect prettier warning.
16.8.1 16.8.1
------ ------
......
...@@ -11,5 +11,5 @@ ...@@ -11,5 +11,5 @@
from .docker_client import DockerClient from .docker_client import DockerClient
from .parsing import apply, basic_parser from .parsing import apply, basic_parser
__version__ = "1.1.0" __version__ = "1.1.1"
__date__ = "2022-02-17" __date__ = "2022-02-17"
...@@ -15,5 +15,5 @@ ...@@ -15,5 +15,5 @@
__date__ = "2022-02-17" __date__ = "2022-02-17"
__updated__ = "2022-09-29" __updated__ = "2022-10-03"
_logger = logging.getLogger(__name__) _logger = logging.getLogger(__name__)
...@@ -68,7 +68,7 @@ ...@@ -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""" """Run prettier"""
config = Config() config = Config()
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"working_dir": path, "working_dir": path,
"tty": True, "tty": True,
}, },
pull, pull=False,
) )
......
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