Change in osmo-gsm-tester[master]: pyflakes: Remove assigned but unread variables

2019-03-01 Thread Holger Freyther
Holger Freyther has posted comments on this change. ( 
https://gerrit.osmocom.org/13071 )

Change subject: pyflakes: Remove assigned but unread variables
..


Patch Set 2: Verified+1


--
To view, visit https://gerrit.osmocom.org/13071
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
Gerrit-Change-Number: 13071
Gerrit-PatchSet: 2
Gerrit-Owner: Holger Freyther 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Holger Freyther 
Gerrit-Reviewer: Pau Espin Pedrol 
Gerrit-Comment-Date: Fri, 01 Mar 2019 15:08:41 +
Gerrit-HasComments: No
Gerrit-HasLabels: Yes


Change in osmo-gsm-tester[master]: pyflakes: Remove assigned but unread variables

2019-03-01 Thread Holger Freyther
Holger Freyther has submitted this change and it was merged. ( 
https://gerrit.osmocom.org/13071 )

Change subject: pyflakes: Remove assigned but unread variables
..

pyflakes: Remove assigned but unread variables

Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
---
M src/osmo_gsm_tester/modem.py
M src/osmo_gsm_tester/osmo_nitb.py
M src/osmo_gsm_tester/template.py
M src/osmo_gsm_tester/util.py
4 files changed, 8 insertions(+), 11 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Pau Espin Pedrol: Looks good to me, approved
  Holger Freyther: Verified



diff --git a/src/osmo_gsm_tester/modem.py b/src/osmo_gsm_tester/modem.py
index f9b827a..95ebb6b 100644
--- a/src/osmo_gsm_tester/modem.py
+++ b/src/osmo_gsm_tester/modem.py
@@ -125,7 +125,7 @@
 user_data = (result_handler, error_handler, user_data)

 # See 
https://lazka.github.io/pgi-docs/Gio-2.0/classes/DBusProxy.html#Gio.DBusProxy.call
-ret = instance._bus.con.call(
+instance._bus.con.call(
 instance._bus_name, instance._path,
 proxymethod._iface_name, proxymethod.__name__,
 GLib.Variant(proxymethod._sinargs, proxymethod_args),
@@ -596,14 +596,14 @@
 if self.is_attached():
 self.detach()
 connmgr = self.dbus.interface(I_CONNMGR)
-prop = connmgr.SetProperty('RoamingAllowed', Variant('b', 
allow_roaming))
-prop = connmgr.SetProperty('Powered', Variant('b', True))
+connmgr.SetProperty('RoamingAllowed', Variant('b', allow_roaming))
+connmgr.SetProperty('Powered', Variant('b', True))

 def detach(self):
 self.dbg('detach')
 connmgr = self.dbus.interface(I_CONNMGR)
-prop = connmgr.SetProperty('RoamingAllowed', Variant('b', False))
-prop = connmgr.SetProperty('Powered', Variant('b', False))
+connmgr.SetProperty('RoamingAllowed', Variant('b', False))
+connmgr.SetProperty('Powered', Variant('b', False))
 connmgr.DeactivateAll()
 connmgr.ResetContexts() # Requires Powered=false

@@ -734,7 +734,7 @@
 call_dbus_obj = systembus_get(call_id)
 props = call_dbus_obj.GetProperties()
 state = props.get('State')
-except Exception as e:
+except Exception:
 self.log('asking call state for non existent call')
 log.log_exn()
 state = 'disconnected'
diff --git a/src/osmo_gsm_tester/osmo_nitb.py b/src/osmo_gsm_tester/osmo_nitb.py
index 66ab2a6..e161ccb 100644
--- a/src/osmo_gsm_tester/osmo_nitb.py
+++ b/src/osmo_gsm_tester/osmo_nitb.py
@@ -176,8 +176,6 @@
 return osmo_ctrl.OsmoCtrl(self.nitb.addr(), OsmoNitbCtrl.PORT)

 def subscriber_add(self, imsi, msisdn, ki=None, algo=None):
-created = False
-
 if algo:
 value = '%s,%s,%s,%s' % (imsi,msisdn,algo,ki)
 else:
diff --git a/src/osmo_gsm_tester/template.py b/src/osmo_gsm_tester/template.py
index c890963..6ce7ebd 100644
--- a/src/osmo_gsm_tester/template.py
+++ b/src/osmo_gsm_tester/template.py
@@ -51,7 +51,6 @@
 template = _lookup.get_template(tmpl_name)
 _logger.dbg('rendering', tmpl_name)

-line_info_name = tmpl_name.replace('-', '_').replace('.', '_')
 return template.render(**dict2obj(values))

 # vim: expandtab tabstop=4 shiftwidth=4
diff --git a/src/osmo_gsm_tester/util.py b/src/osmo_gsm_tester/util.py
index 930c86a..e9a1f30 100644
--- a/src/osmo_gsm_tester/util.py
+++ b/src/osmo_gsm_tester/util.py
@@ -64,7 +64,7 @@
 for line in proc.stdout.readlines():
 if 'inet' in line and ' ' + ip + '/' in line:
 return line.split()[-1]
-except Exception as e:
+except Exception:
 pass
 return None

@@ -79,7 +79,7 @@
 if words[i] == 'src':
 return words[i+1]
 i += 1
-except Exception as e:
+except Exception:
 pass
 return None


--
To view, visit https://gerrit.osmocom.org/13071
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
Gerrit-Change-Number: 13071
Gerrit-PatchSet: 2
Gerrit-Owner: Holger Freyther 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Holger Freyther 
Gerrit-Reviewer: Pau Espin Pedrol 


Change in osmo-gsm-tester[master]: pyflakes: Remove assigned but unread variables

2019-03-01 Thread Pau Espin Pedrol
Pau Espin Pedrol has posted comments on this change. ( 
https://gerrit.osmocom.org/13071 )

Change subject: pyflakes: Remove assigned but unread variables
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/13071
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
Gerrit-Change-Number: 13071
Gerrit-PatchSet: 2
Gerrit-Owner: Holger Freyther 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Holger Freyther 
Gerrit-Reviewer: Pau Espin Pedrol 
Gerrit-Comment-Date: Fri, 01 Mar 2019 13:44:30 +
Gerrit-HasComments: No
Gerrit-HasLabels: Yes


Change in osmo-gsm-tester[master]: pyflakes: Remove assigned but unread variables

2019-02-28 Thread Holger Freyther
Holger Freyther has posted comments on this change. ( 
https://gerrit.osmocom.org/13071 )

Change subject: pyflakes: Remove assigned but unread variables
..


Patch Set 2:

Gerrit/Jenkins doesn't trigger a build for it. I tried to manually trigger it 
but nothing seem to match. *strange*


--
To view, visit https://gerrit.osmocom.org/13071
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
Gerrit-Change-Number: 13071
Gerrit-PatchSet: 2
Gerrit-Owner: Holger Freyther 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Holger Freyther 
Gerrit-Comment-Date: Thu, 28 Feb 2019 16:17:19 +
Gerrit-HasComments: No
Gerrit-HasLabels: No


Change in osmo-gsm-tester[master]: pyflakes: Remove assigned but unread variables

2019-02-28 Thread Harald Welte
Harald Welte has posted comments on this change. ( 
https://gerrit.osmocom.org/13071 )

Change subject: pyflakes: Remove assigned but unread variables
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/13071
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
Gerrit-Change-Number: 13071
Gerrit-PatchSet: 2
Gerrit-Owner: Holger Freyther 
Gerrit-Reviewer: Harald Welte 
Gerrit-Comment-Date: Thu, 28 Feb 2019 15:48:25 +
Gerrit-HasComments: No
Gerrit-HasLabels: Yes


Change in osmo-gsm-tester[master]: pyflakes: Remove assigned but unread variables

2019-02-26 Thread Holger Freyther
Holger Freyther has uploaded this change for review. ( 
https://gerrit.osmocom.org/13071


Change subject: pyflakes: Remove assigned but unread variables
..

pyflakes: Remove assigned but unread variables

Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
---
M src/osmo_gsm_tester/modem.py
M src/osmo_gsm_tester/osmo_nitb.py
M src/osmo_gsm_tester/template.py
M src/osmo_gsm_tester/util.py
4 files changed, 8 insertions(+), 11 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-gsm-tester 
refs/changes/71/13071/1

diff --git a/src/osmo_gsm_tester/modem.py b/src/osmo_gsm_tester/modem.py
index f9b827a..95ebb6b 100644
--- a/src/osmo_gsm_tester/modem.py
+++ b/src/osmo_gsm_tester/modem.py
@@ -125,7 +125,7 @@
 user_data = (result_handler, error_handler, user_data)

 # See 
https://lazka.github.io/pgi-docs/Gio-2.0/classes/DBusProxy.html#Gio.DBusProxy.call
-ret = instance._bus.con.call(
+instance._bus.con.call(
 instance._bus_name, instance._path,
 proxymethod._iface_name, proxymethod.__name__,
 GLib.Variant(proxymethod._sinargs, proxymethod_args),
@@ -596,14 +596,14 @@
 if self.is_attached():
 self.detach()
 connmgr = self.dbus.interface(I_CONNMGR)
-prop = connmgr.SetProperty('RoamingAllowed', Variant('b', 
allow_roaming))
-prop = connmgr.SetProperty('Powered', Variant('b', True))
+connmgr.SetProperty('RoamingAllowed', Variant('b', allow_roaming))
+connmgr.SetProperty('Powered', Variant('b', True))

 def detach(self):
 self.dbg('detach')
 connmgr = self.dbus.interface(I_CONNMGR)
-prop = connmgr.SetProperty('RoamingAllowed', Variant('b', False))
-prop = connmgr.SetProperty('Powered', Variant('b', False))
+connmgr.SetProperty('RoamingAllowed', Variant('b', False))
+connmgr.SetProperty('Powered', Variant('b', False))
 connmgr.DeactivateAll()
 connmgr.ResetContexts() # Requires Powered=false

@@ -734,7 +734,7 @@
 call_dbus_obj = systembus_get(call_id)
 props = call_dbus_obj.GetProperties()
 state = props.get('State')
-except Exception as e:
+except Exception:
 self.log('asking call state for non existent call')
 log.log_exn()
 state = 'disconnected'
diff --git a/src/osmo_gsm_tester/osmo_nitb.py b/src/osmo_gsm_tester/osmo_nitb.py
index 66ab2a6..e161ccb 100644
--- a/src/osmo_gsm_tester/osmo_nitb.py
+++ b/src/osmo_gsm_tester/osmo_nitb.py
@@ -176,8 +176,6 @@
 return osmo_ctrl.OsmoCtrl(self.nitb.addr(), OsmoNitbCtrl.PORT)

 def subscriber_add(self, imsi, msisdn, ki=None, algo=None):
-created = False
-
 if algo:
 value = '%s,%s,%s,%s' % (imsi,msisdn,algo,ki)
 else:
diff --git a/src/osmo_gsm_tester/template.py b/src/osmo_gsm_tester/template.py
index c890963..6ce7ebd 100644
--- a/src/osmo_gsm_tester/template.py
+++ b/src/osmo_gsm_tester/template.py
@@ -51,7 +51,6 @@
 template = _lookup.get_template(tmpl_name)
 _logger.dbg('rendering', tmpl_name)

-line_info_name = tmpl_name.replace('-', '_').replace('.', '_')
 return template.render(**dict2obj(values))

 # vim: expandtab tabstop=4 shiftwidth=4
diff --git a/src/osmo_gsm_tester/util.py b/src/osmo_gsm_tester/util.py
index 930c86a..e9a1f30 100644
--- a/src/osmo_gsm_tester/util.py
+++ b/src/osmo_gsm_tester/util.py
@@ -64,7 +64,7 @@
 for line in proc.stdout.readlines():
 if 'inet' in line and ' ' + ip + '/' in line:
 return line.split()[-1]
-except Exception as e:
+except Exception:
 pass
 return None

@@ -79,7 +79,7 @@
 if words[i] == 'src':
 return words[i+1]
 i += 1
-except Exception as e:
+except Exception:
 pass
 return None


--
To view, visit https://gerrit.osmocom.org/13071
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie257ac051739ea6f846d1aac2c8f778638b5f8a6
Gerrit-Change-Number: 13071
Gerrit-PatchSet: 1
Gerrit-Owner: Holger Freyther