Skip to content

Commit

Permalink
fix: fixed incorrect description argument to ArgumentParser
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Oct 26, 2022
1 parent c50bacb commit 7ec5683
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aw_watcher_afk/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
import argparse
import sys

from aw_core.config import load_config_toml

Expand Down Expand Up @@ -28,7 +28,7 @@ def parse_args():
default_timeout = config["timeout"]

parser = argparse.ArgumentParser(
"A watcher for keyboard and mouse input to detect AFK state."
description="A watcher for keyboard and mouse input to detect AFK state."
)
parser.add_argument("--host", dest="host")
parser.add_argument("--port", dest="port")
Expand Down

0 comments on commit 7ec5683

Please sign in to comment.