diff options
Diffstat (limited to 'src/osmo_gsm_tester/bts_osmo.py')
-rw-r--r-- | src/osmo_gsm_tester/bts_osmo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo_gsm_tester/bts_osmo.py b/src/osmo_gsm_tester/bts_osmo.py index 21ae135..b9b7fef 100644 --- a/src/osmo_gsm_tester/bts_osmo.py +++ b/src/osmo_gsm_tester/bts_osmo.py @@ -57,7 +57,7 @@ class OsmoBts(bts.Bts, metaclass=ABCMeta): # PUBLIC (test API included) ################### @abstractmethod - def start(self): + def start(self, keepalive=False): # coming from bts.Bts, we forward the implementation to children. pass @@ -108,6 +108,6 @@ class OsmoBtsMainUnit(OsmoBts, metaclass=ABCMeta): # PUBLIC (test API included) ################### @abstractmethod - def start(self): + def start(self, keepalive=False): # coming from bts.Bts, we forward the implementation to children. pass |