Skip to content

Commit

Permalink
appease pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmcorvidae committed Aug 4, 2024
1 parent 2ae18c1 commit e84a3cb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions meshtastic/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1501,17 +1501,20 @@ def initParser():

group.add_argument(
"--setalt",
help="Set device altitude in meters (allows use without GPS), and enable fixed position. When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
help="Set device altitude in meters (allows use without GPS), and enable fixed position. "
"When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
)

group.add_argument(
"--setlat",
help="Set device latitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7. When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
help="Set device latitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7. "
"When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
)

group.add_argument(
"--setlon",
help="Set device longitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7. When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
help="Set device longitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7. "
"When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
)

group.add_argument(
Expand Down

0 comments on commit e84a3cb

Please sign in to comment.