diff options
Diffstat (limited to 'test/mocks/pnfsimulator/netconfsimulator')
-rw-r--r-- | test/mocks/pnfsimulator/netconfsimulator/netconf/netopeer_change_saver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mocks/pnfsimulator/netconfsimulator/netconf/netopeer_change_saver.py b/test/mocks/pnfsimulator/netconfsimulator/netconf/netopeer_change_saver.py index 0a9e841d2..92f88463d 100644 --- a/test/mocks/pnfsimulator/netconfsimulator/netconf/netopeer_change_saver.py +++ b/test/mocks/pnfsimulator/netconfsimulator/netconf/netopeer_change_saver.py @@ -71,7 +71,7 @@ def send_message(message): def create_producer(server): - for i in range(10): + for i in range(10): # pylint: disable=W0612 try: return KafkaProducer(bootstrap_servers=server, value_serializer=lambda v: json.dumps(v).encode('utf-8')) except Exception: |