aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp
diff options
context:
space:
mode:
Diffstat (limited to 'pyGHDL/lsp')
-rw-r--r--pyGHDL/lsp/lsp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/lsp/lsp.py b/pyGHDL/lsp/lsp.py
index 32a64b3ea..f552a6234 100644
--- a/pyGHDL/lsp/lsp.py
+++ b/pyGHDL/lsp/lsp.py
@@ -59,7 +59,7 @@ def normalize_rpc_file_uris(rpc):
# Fixes a crash on windows where the underlying ada crashes
# if paths to the same file are given with inconsistent
# capitalization.
- for (key, val) in rpc.items():
+ for key, val in rpc.items():
# recurse into all leaf elements.
if isinstance(val, dict):
normalize_rpc_file_uris(val)