summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authormohankumarelec <mohankumarelec@gmail.com>2023-10-15 08:12:12 +0530
committerGitHub <noreply@github.com>2023-10-14 19:42:12 -0700
commitb6e92ac882596ad95a3bc2be3eac9df8c05f14b1 (patch)
tree251dbf4eec817a2f7785c4639d74b6c6f2671753 /server
parent072c2205d680d8c0af1ec67e9c077d62eb6b5c44 (diff)
downloadsncontinue-b6e92ac882596ad95a3bc2be3eac9df8c05f14b1.tar.gz
sncontinue-b6e92ac882596ad95a3bc2be3eac9df8c05f14b1.tar.bz2
sncontinue-b6e92ac882596ad95a3bc2be3eac9df8c05f14b1.zip
Syntax error fixes (#549)
* Syntax error fixes * Update paths.py
Diffstat (limited to 'server')
-rw-r--r--server/continuedev/core/context.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/continuedev/core/context.py b/server/continuedev/core/context.py
index 547a1593..e1e27516 100644
--- a/server/continuedev/core/context.py
+++ b/server/continuedev/core/context.py
@@ -416,9 +416,9 @@ class ContextManager:
tasks = [
safe_load(provider)
- for _, provider in (
- providers_to_load or self.context_providers
- ).items()
+ for provider in (
+ providers_to_load or self.context_providers.values()
+ )
]
await asyncio.wait_for(asyncio.gather(*tasks), timeout=20)