mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-20 14:27:42 +00:00
flynt pass to provide consistency to string formatters and concatenation
This commit is contained in:
+1
-1
@@ -40,6 +40,6 @@ def create_provider_from_config(package, config_providers_entry):
|
||||
package to look for it in, as there are several types of provider. e.g. package "providers.spot", where the config
|
||||
entry is for a POTA spot provider."""
|
||||
|
||||
module = importlib.import_module(package + "." + config_providers_entry["class"].lower())
|
||||
module = importlib.import_module(f"{package}.{config_providers_entry['class'].lower()}")
|
||||
provider_class = getattr(module, config_providers_entry["class"])
|
||||
return provider_class(config_providers_entry)
|
||||
|
||||
Reference in New Issue
Block a user