Skip to content

Commit

Permalink
Fix help typos
Browse files Browse the repository at this point in the history
  • Loading branch information
olzhasar committed Jan 28, 2024
1 parent 0dbab51 commit 5b567ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pytest_watcher/watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ def _parse_patterns(arg: str):
parser.add_argument(
"--clear",
action="store_true",
help="Clear the terminal screen after each test run",
help="Clear the terminal screen before test run",
)
parser.add_argument(
"--delay",
type=float,
required=False,
help="The delay (in seconds) before triggering"
help="The delay (in seconds) before triggering "
f"the test run (default: {DEFAULT_DELAY})",
)
parser.add_argument(
Expand All @@ -125,14 +125,14 @@ def _parse_patterns(arg: str):
"--patterns",
type=_parse_patterns,
required=False,
help="File patterns to watch, specified as comma-separated"
help="File patterns to watch, specified as comma-separated "
"Unix-style patterns (default: '*.py')",
)
parser.add_argument(
"--ignore-patterns",
type=_parse_patterns,
required=False,
help="File patterns to ignore, specified as comma-separated"
help="File patterns to ignore, specified as comma-separated "
"Unix-style patterns (default: '')",
)
parser.add_argument("--version", action="version", version=VERSION)
Expand Down

0 comments on commit 5b567ea

Please sign in to comment.