Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Richtarik committed Apr 3, 2024
1 parent c2f4f53 commit 54cab43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/dirhash/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def get_kwargs(args):
help=(
'One or several patterns for paths to include. NOTE: patterns '
'with an asterisk must be in quotes ("*") or the asterisk '
'preceded by an escape character (\*).'
'preceded by an escape character (`*).'
),
metavar=''
)
Expand All @@ -91,7 +91,7 @@ def get_kwargs(args):
help=(
'One or several patterns for paths to exclude. NOTE: patterns '
'with an asterisk must be in quotes ("*") or the asterisk '
'preceded by an escape character (\*).'
'preceded by an escape character (`*).'
),
metavar=''
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dirhash.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def test_ignore_extensions(self):

class TempDirTest(object):

def setup(self):
def setup_method(self):
self.dir = tempfile.mkdtemp()

def tear_down(self):
Expand Down

0 comments on commit 54cab43

Please sign in to comment.