mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-18 07:22:57 +00:00
Remove explicit utf-8 from decode() as it's default (#2237)
This commit is contained in:
@@ -70,7 +70,7 @@ class TrackedContainer:
|
||||
) -> str:
|
||||
running_container = self.run_detached(**kwargs)
|
||||
rv = running_container.wait(timeout=timeout)
|
||||
logs = running_container.logs().decode("utf-8")
|
||||
logs = running_container.logs().decode()
|
||||
assert isinstance(logs, str)
|
||||
LOGGER.debug(logs)
|
||||
assert no_warnings == (not self.get_warnings(logs))
|
||||
|
Reference in New Issue
Block a user