I have following Python code:
check_files(original_file = original_file_name,
used_file = used_file_name,
unused_file = unused_file_name)
I want to make it instead to look like:
check_files(original_file = original_file_name,
used_file = used_file_name,
unused_file = unused_file_name)
Also I want to correct formatting not only for function calls but also that way dictionary key/value pairs and etc.
For Example, in RStudio, if I select the code and press CTRL + I RStudio will correct formating as I have described above. Is there any similar way to correct formating in VSCode?