mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
Try and use a normalized dirname to avoid windows test issues in CI
This commit is contained in:
parent
5cab55c74b
commit
5bf36002ec
1 changed files with 1 additions and 0 deletions
|
@ -16,6 +16,7 @@ IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".gif", ".bmp", ".tiff", ".webp"}
|
|||
class IgnorantTemporaryDirectory:
|
||||
def __init__(self):
|
||||
self.temp_dir = tempfile.TemporaryDirectory()
|
||||
self.temp_dir = str(Path(self.temp_dir).resolve())
|
||||
|
||||
def __enter__(self):
|
||||
return self.temp_dir.__enter__()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue