We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb6f9e commit b397434Copy full SHA for b397434
fortls/langserver.py
@@ -237,10 +237,10 @@ def serve_initialize(self, request: dict):
237
238
# Log final options
239
final_options = {}
240
- for param in self.arguments_list:
241
- if param.startswith("debug_") and param != "debug_log":
+ for argument in self.arguments_list:
+ if argument.startswith("debug_") and argument != "debug_log":
242
continue
243
- final_options[param] = getattr(self, param)
+ final_options[argument] = getattr(self, argument)
244
log.debug("Final options: %s", final_options)
245
246
return {"capabilities": server_capabilities}
0 commit comments