From b158e0d17d6db64d3a68df4f594966158125da77 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 16 Aug 2020 23:19:37 +0200 Subject: [PATCH] add the ability to add literal command-line arguments --- owrx/command.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/owrx/command.py b/owrx/command.py index 871e414..87ae711 100644 --- a/owrx/command.py +++ b/owrx/command.py @@ -72,3 +72,8 @@ class Option(CommandMapping): def setSpacer(self, spacer): self.spacer = spacer return self + + +class Argument(CommandMapping): + def map(self, value): + return value