mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
Fix ruff rules ISC flake8-implicit-str-concat (#8892)
This commit is contained in:
@ -22,6 +22,5 @@ def world_covid19_stats(url: str = "https://www.worldometers.info/coronavirus")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
print("\033[1m" + "COVID-19 Status of the World" + "\033[0m\n")
|
||||
for key, value in world_covid19_stats().items():
|
||||
print(f"{key}\n{value}\n")
|
||||
print("\033[1m COVID-19 Status of the World \033[0m\n")
|
||||
print("\n".join(f"{key}\n{value}" for key, value in world_covid19_stats().items()))
|
||||
|
Reference in New Issue
Block a user