Skip to content

Commit f19a79c

Browse files
authored
Fix quickstart example
If someone run the quickstart sample equal to the example, will be fail, because render_template is not imported.
1 parent 4d62abc commit f19a79c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PyMongo support for Flask applications
55
## Quickstart
66

77
```python
8-
from flask import Flask
8+
from flask import Flask, render_template
99
from flask_pymongo import PyMongo
1010

1111
app = Flask(__name__)

0 commit comments

Comments
 (0)