We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fParentName
fClassName
1 parent 8de2d22 commit be2f112Copy full SHA for be2f112
src/uproot/behaviors/TBranch.py
@@ -2449,10 +2449,6 @@ def streamer(self):
2449
fParentName = self.member("fParentName", none_if_missing=True)
2450
fClassName = self.member("fClassName", none_if_missing=True)
2451
2452
- # Remove spaces
2453
- fParentName = fParentName.replace(" ", "") if fParentName else fParentName
2454
- fClassName = fClassName.replace(" ", "") if fClassName else fClassName
2455
-
2456
if fParentName is not None and fParentName != "":
2457
matches = self._file.streamers.get(fParentName)
2458
0 commit comments