I am completely new to Python, and I am trying to start my server, but I get this syntax error from the project I'm working on.
def find_shortest_path(start: GraphNode, end, path=[]):
^
SyntaxError: invalid syntax
To be clear, I did not write the code, I just need to stylize the project, but I don’t know how else to see the application without running it on the server.
source
share