We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0d012 commit dcf2347Copy full SHA for dcf2347
can/player.py
@@ -96,7 +96,11 @@ def main() -> None:
96
"--skip",
97
type=float,
98
default=60 * 60 * 24,
99
- help="<s> skip gaps greater than 's' seconds",
+ help="Skip gaps greater than 's' seconds between messages. "
100
+ "Default is 86400 (24 hours), meaning only very large gaps are skipped. "
101
+ "Set to 0 to never skip any gaps (all delays are preserved). "
102
+ "Set to a very small value (e.g., 1e-4) "
103
+ "to skip all gaps and send messages as fast as possible.",
104
)
105
player_group.add_argument(
106
"-l",
0 commit comments