Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit 67a2ba4

Browse files
gkorlandCopilot
andcommitted
Fix PR review: remove unused imports and wildcard import
- Remove unused 'import os' from csharp/analyzer.py - Replace 'from ...entities import *' with explicit imports - Remove unused 'from pathlib import Path' from test_csharp_analyzer.py Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e15108a commit 67a2ba4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

api/analyzers/csharp/analyzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import os
21
import subprocess
32
from pathlib import Path
43

54
from multilspy import SyncLanguageServer
6-
from ...entities import *
5+
from ...entities.entity import Entity
6+
from ...entities.file import File
77
from typing import Optional
88
from ..analyzer import AbstractAnalyzer
99

tests/test_csharp_analyzer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
import unittest
3-
from pathlib import Path
43

54
from api import SourceAnalyzer, Graph
65

0 commit comments

Comments
 (0)