It's because you're running the dev server with the reloader. The reloader monitors the filesystem for changes and starts the real app in a different process, so there are two total processes.
You can disable the reloader by settting debug=False or use_reloader=False when calling run.