suggest_typo_fix# pymc_marketing.mmm.builders.schema.suggest_typo_fix(key, valid_keys, *, cutoff=0.6)[source]# Return the closest match for key from valid_keys, or None. Parameters: keystrThe unknown key that was provided. valid_keysset of strThe set of valid key names. cutofffloat, default 0.6Minimum similarity ratio for difflib.get_close_matches. Returns: str or NoneThe closest matching key, or None if no close match is found.