Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit a314fc8

Browse files
committed
Linting fixes
1 parent 4d57e4c commit a314fc8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.pylintrc

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ disable =
44
# TODO(ssbarnea): remove temporary skips adding during initial adoption:
55
abstract-method,
66
arguments-differ,
7-
bad-continuation,
87
broad-except,
98
consider-merging-isinstance,
109
consider-using-in,

src/molecule_docker/driver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def ansible_connection_options(self, instance_name):
224224
x["ansible_docker_extra_args"] = f"-H={os.environ['DOCKER_HOST']}"
225225
return x
226226

227-
@cache
227+
@cache(maxsize=None)
228228
def sanity_checks(self):
229229
"""Implement Docker driver sanity checks."""
230230
log.info("Sanity checks: '%s'", self._name)

0 commit comments

Comments
 (0)