[docs]defload_ruleset_from_files(files,examples,options):fromharp_apps.rules.settingsimportRulesSettings# todo not easy to implement for now, and not really important for this command setiflen(options):raiseclick.UsageError("Unsupported options: "+", ".join(options))settings=RulesSettings()forfileinfiles:settings.load(file)forexampleinexamples:settings.load(get_example_filename(example))returnsettings.ruleset