Skip to content

Commit

Permalink
rm .coverage, update mkdocs, add type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrusch committed Sep 23, 2024
1 parent 2b6a361 commit 6218ced
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ clean:
@rm -fr .pytest_cache/
@rm -fr .eggs/
@rm -fr coverage.xml
@rm -fr .coverage
@find . -name '*.egg-info' -exec rm -fr {} +
@find . -name '*.egg' -exec rm -f {} +
@find . -name '*.pyc' -exec rm -f {} +
Expand Down
2 changes: 1 addition & 1 deletion pymwp/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def add_loop(self, result: FuncLoops) -> None:
Result.pretty_print(str(result))

@staticmethod
def pretty_print(txt: str, line_w: int = 50, hb='─') -> str:
def pretty_print(txt: str, line_w: int = 50, hb: str = '─') -> str:
"""Draws a colored box around text before display.
Arguments:
Expand Down
2 changes: 1 addition & 1 deletion requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# the deps needed to build docs

mkdocs-material==9.5.34
mkdocs-material==9.5.36
mkdocstrings-python==1.11.1
mkdocs-include-markdown-plugin==6.2.2
black

0 comments on commit 6218ced

Please sign in to comment.