@@ -1943,7 +1943,7 @@ def title_of(self, where, recursive=True):
19431943
19441944 Note that this does not read any data from the file.
19451945 """
1946- if recursive and "/" in where or ":" in where :
1946+ if ( recursive and "/" in where ) or ":" in where :
19471947 step , last_item = self .descent_into_path (where )
19481948 return step [last_item ].title
19491949 else :
@@ -1965,7 +1965,7 @@ def classname_of(self, where, encoded=False, version=None, recursive=True):
19651965 Note that this does not read any data from the file.
19661966 """
19671967
1968- if recursive and "/" in where or ":" in where :
1968+ if ( recursive and "/" in where ) or ":" in where :
19691969 step , last_item = self .descent_into_path (where )
19701970 return step [last_item ].classname
19711971 else :
@@ -1987,7 +1987,7 @@ def class_of(self, where, version=None, recursive=True):
19871987
19881988 Note that this does not read any data from the file.
19891989 """
1990- if recursive and "/" in where or ":" in where :
1990+ if ( recursive and "/" in where ) or ":" in where :
19911991 return self ._file .class_named (
19921992 self .classname_of (where , version = version ), version = version
19931993 )
@@ -2009,7 +2009,7 @@ def streamer_of(self, where, version="max", recursive=True):
20092009
20102010 Note that this does not read any data from the file.
20112011 """
2012- if recursive and "/" in where or ":" in where :
2012+ if ( recursive and "/" in where ) or ":" in where :
20132013 return self ._file .streamer_named (
20142014 self .classname_of (where , version = version ), version = version
20152015 )
0 commit comments