Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit a6cc301

Browse files
[jetbrains_projects] Fix automerge issues
1 parent abd1c44 commit a6cc301

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

jetbrains_projects/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ def list_projects(self) -> List[Project]:
9494
recent_projects_xml = "recentSolutions.xml"
9595
return self._parse_recent_projects(Path(latest) / "options" / recent_projects_xml)
9696

97-
@staticmethod
98-
def _parse_recent_projects(recent_projects_file: Path) -> list[Project]:
97+
def _parse_recent_projects(self, recent_projects_file: Path) -> list[Project]:
9998
try:
10099
root = ElementTree.parse(recent_projects_file).getroot()
101100
if not self.is_rider:

0 commit comments

Comments
 (0)