Skip to content

Commit

Permalink
fix: apply fix to file handler
Browse files Browse the repository at this point in the history
  • Loading branch information
TedRio committed Feb 5, 2024
1 parent fc492b1 commit bc4fb47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pykiso/pytest_plugin/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def pytest_sessionstart(session: Session):
(
hdlr
for hdlr in root_logger.handlers
if isinstance(hdlr, logging.FileHandler)
if type(hdlr) == logging.FileHandler
),
None,
)
Expand Down

0 comments on commit bc4fb47

Please sign in to comment.