Commit 7516d13
fix: Correct datetime import pattern in RepomixService
Changed from module-level import to direct datetime import for
better readability and consistency with project conventions.
Changes:
- Import: `import datetime` → `from datetime import datetime`
- Usage: `datetime.datetime.now()` → `datetime.now()`
This follows Python best practices and improves code clarity
by avoiding redundant module prefix.
Priority: P1 - HIGH (code quality improvement)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 892bc43 commit 7516d13
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
257 | 257 | | |
258 | 258 | | |
259 | 259 | | |
260 | | - | |
| 260 | + | |
261 | 261 | | |
262 | 262 | | |
263 | 263 | | |
| |||
0 commit comments