Skip to content

Commit

Permalink
Fix mypy linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
judahrand committed Jul 7, 2022
1 parent 17cdf41 commit e7bd271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox_docker/tox3/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def parse_container_config(

privileged = False
if reader.getstring("privileged"):
privileged = getboolean(reader, "privileged")
privileged = bool(getboolean(reader, "privileged"))

environment = None
if reader.getstring("environment"):
Expand Down

0 comments on commit e7bd271

Please sign in to comment.