Skip to content

Commit cca92ec

Browse files
committed
fix: fix precommit error
1 parent 17978ed commit cca92ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/pathlib/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def copy_into(self, target_dir, exist_ok=True, **kwargs):
393393
name = self.name
394394
if not name:
395395
raise ValueError(f"{self!r} has an empty name")
396-
396+
397397
target = target_dir / name
398398
if hasattr(target, 'info') and self.info.is_dir() and target.info.exists() and target.info.is_dir():
399399
if not exist_ok:

0 commit comments

Comments
 (0)