``` inflection = inflect.engine() word = "Products" plural = inflection.plural_noun(word) print(plural) ``` Why does it print `Productss` with a double ss at the end of it? Should it not first check for plurality and then make it plural if it's singular?