'Bracket not closed error python in VS Code

I'm working on a program in Python, but it gives me an error that the brackets are not closed.

openFile = tk.Button( root, text="Open File", padx=10, pady=5, fg="white", bg="black", command=addApp)


Solution 1:[1]

There is a comma missing after pady=5.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 whiskeyo