contextl 1.2.31 → 1.2.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contextl",
3
- "version": "1.2.31",
3
+ "version": "1.2.32",
4
4
  "description": "contextl — finds the most relevant files in your codebase for any change request. MCP server for AI coding agents.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -847,7 +847,10 @@ def parse_imports(scan_result: ScanResult) -> ParseResult:
847
847
  for sym in symbols_str.split(','):
848
848
  sym = sym.split(' as ')[0].strip()
849
849
  if sym and sym != '*':
850
- extra.append(f"{base}.{sym}")
850
+ if base.endswith("."):
851
+ extra.append(f"{base}{sym}")
852
+ else:
853
+ extra.append(f"{base}.{sym}")
851
854
  # Merge without duplicates
852
855
  seen = set(raw_imports)
853
856
  for e in extra: