Closed jrebiffe closed 1 year ago
Corrects the issue #13 : changes the Get and Get Config keywords to avoid ignoring filter_criteria when filter_criteria doesnot contain any child. Additionally:
if x
if x is not None
if foo is None
is not None
None
use_lxml=True
Corrects the issue #13 : changes the Get and Get Config keywords to avoid ignoring filter_criteria when filter_criteria doesnot contain any child. Additionally:
if x
when you really meanif x is not None
"; and Google section 2.14.4 bullet 2 "Always useif foo is None
: (oris not None
) to check for aNone
value."use_lxml=True
) due to bool method of the class Element of LXML.