Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions claude_viewer/parser.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import logging
from pathlib import Path
from typing import List, Dict, Any, Generator
from typing import List, Dict, Any, Generator, Optional
from datetime import datetime
import urllib.parse

Expand Down Expand Up @@ -43,7 +43,7 @@ def scan_projects(self) -> Generator[Dict[str, Any], None, None]:
"session_id": log_file.stem
}

def _reconstruct_path(self, decoded_path: str) -> Path | None:
def _reconstruct_path(self, decoded_path: str) -> Optional[Path]:
"""
Attempts to reconstruct the real path from a decoded path (where / became -).
Since we don't know which -s were originally /s and which were part of the name,
Expand Down
171 changes: 169 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"react-markdown": "^10.1.0",
"react-router-dom": "^7.11.0",
"recharts": "^3.6.0",
"rehype-raw": "^7.0.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
Expand All @@ -50,4 +51,4 @@
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
}
}
}
Loading