From 545421ded46efb8459f5b19a15ed26f6a74a516c Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 27 Nov 2025 11:48:17 -0800 Subject: [PATCH] When creating a Path from a Path, keep _case_correct. --- voussoirkit/pathclass.py | 1 + 1 file changed, 1 insertion(+) diff --git a/voussoirkit/pathclass.py b/voussoirkit/pathclass.py index 33f6037..bc10b89 100644 --- a/voussoirkit/pathclass.py +++ b/voussoirkit/pathclass.py @@ -135,6 +135,7 @@ class Path: self._parts = path._parts self._absolute_path = path._absolute_path self._extension = path._extension + self._case_correct = path._case_correct return if isinstance(path, (tuple, list)):