Skip to content

Commit

Permalink
update .flake8 configuration to ignore build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Dec 22, 2022
1 parent f188dc9 commit e117dac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ max-line-length = 130
exclude =
docs,
src/stpipe/extern,
build,
.tox,
.eggs
ignore = E203, W503, W504, W605
2 changes: 1 addition & 1 deletion tests/test_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class LoggingPipeline(Pipeline):
"""

def process(self):
self.log.warning(f"This step has called out a warning.")
self.log.warning("This step has called out a warning.")

self.log.warning(f"{self.log} {self.log.handlers}")
return
Expand Down

0 comments on commit e117dac

Please sign in to comment.