@@ -8,37 +8,37 @@ def __init__(self):
88
99 def add_keywords (self , input ):
1010 if 'keywords' in self .q .keys ():
11- self .q ['keywords' ] = self .q ['keywords' ] + ', ' + (str (input ))
11+ self .q ['keywords' ] = self .q ['keywords' ] + ' OR ' + (str (input ))
1212 else :
1313 self .q ['keywords' ] = str (input )
1414
1515 def add_owner (self , input ):
1616 if 'owner' in self .q .keys ():
17- self .q ['owner' ] = self .q ['owner' ] + ', ' + (str (input ))
17+ self .q ['owner' ] = self .q ['owner' ] + ' OR ' + (str (input ))
1818 else :
1919 self .q ['owner' ] = str (input )
2020
2121 def add_ultimate_parent (self , input ):
2222 if 'ultimate_parent' in self .q .keys ():
23- self .q ['ultimate_parent' ] = self .q ['ultimate_parent' ] + ', ' + (str (input ))
23+ self .q ['ultimate_parent' ] = self .q ['ultimate_parent' ] + ' OR ' + (str (input ))
2424 else :
2525 self .q ['ultimate_parent' ] = str (input )
2626
2727 def add_inventor (self , input ):
2828 if 'inventor' in self .q .keys ():
29- self .q ['inventor' ] = self .q ['inventor' ] + ', ' + (str (input ))
29+ self .q ['inventor' ] = self .q ['inventor' ] + ' OR ' + (str (input ))
3030 else :
3131 self .q ['inventor' ] = str (input )
3232
3333 def add_patent_class (self , input ):
3434 if 'patent_class' in self .q .keys ():
35- self .q ['patent_class' ] = self .q ['patent_class' ] + ', ' + (str (input ))
35+ self .q ['patent_class' ] = self .q ['patent_class' ] + ' OR ' + (str (input ))
3636 else :
3737 self .q ['patent_class' ] = str (input )
3838
3939 def add_patent_office (self , input ):
4040 if 'patent_office' in self .q .keys ():
41- self .q ['patent_office' ] = self .q ['patent_office' ] + ', ' + (str (input ))
41+ self .q ['patent_office' ] = self .q ['patent_office' ] + ' OR ' + (str (input ))
4242 else :
4343 self .q ['patent_office' ] = str (input )
4444
0 commit comments