Skip to content

Commit f387a14

Browse files
author
Ahmed Bilal
committed
Fix ruff formatting: remove trailing whitespace
1 parent 97e1291 commit f387a14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main/python/cmdLineUtils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,15 +694,15 @@ def copyRootObjectRecursive(sourceFile, sourcePathSplit, destFile, destPathSplit
694694
obj = key.ReadObj()
695695
# Determine the actual name that will be written
696696
actualName = setName if setName != "" else objectName
697-
697+
698698
# Delete existing object if replace option is enabled
699699
if replaceOption and isExisting(destFile, destPathSplit + [actualName]):
700700
retcodeTemp = deleteObject(destFile, destPathSplit + [actualName])
701701
if retcodeTemp:
702702
retcode += retcodeTemp
703703
obj.Delete()
704704
continue
705-
705+
706706
if issubclass(obj.__class__, ROOT.TCollection):
707707
# probably the object was written with kSingleKey
708708
changeDirectory(destFile, destPathSplit)

0 commit comments

Comments
 (0)