style: use f-string
diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py
index 1589524..36ad8fe 100644
--- a/erpnext/setup/doctype/company/company.py
+++ b/erpnext/setup/doctype/company/company.py
@@ -422,7 +422,7 @@
 
 def install_country_fixtures(company, country):
 	try:
-		module_name = "erpnext.regional.{0}.setup.setup".format(frappe.scrub(country))
+		module_name = f"erpnext.regional.{frappe.scrub(country)}.setup.setup"
 		frappe.get_attr(module_name)(company, False)
 	except ImportError:
 		pass