We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f68d0 commit c88c853Copy full SHA for c88c853
1 file changed
plugin_code/qgis_shogun_editor.py
@@ -298,11 +298,9 @@ def request_public_entity(self, url):
298
# request public application
299
self.reply = self.na_manager.get(self.request)
300
eventLoop = QEventLoop()
301
- #self.reply.finished.connect(self.finished)
302
self.reply.finished.connect(eventLoop.quit)
303
eventLoop.exec_() # blocs until finished
304
305
- #def finished(self):
306
if self.reply.error() == self.reply.NoError:
307
self.response = self.reply.readAll().data().decode("utf-8")
308
#print("Response:", self.response)
@@ -348,5 +346,3 @@ def load_applications(self):
348
346
# get specific layers
349
347
result = [layer for layer in layers_content if layer["id"] == self.layer_ids[0]]
350
print('Layer', result)
351
-
352
-# http://192.168.100.106:8080/ # TODO remove!!!
0 commit comments