We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d0cb4 commit c6ca3a1Copy full SHA for c6ca3a1
challenges/intermediate-literalstring/question.py
@@ -3,13 +3,15 @@
3
4
You're writing a web backend.
5
Annotate a function `execute_query` which runs SQL, but also can prevent SQL injection attacks.
6
+
7
+NOTE: You don't need to implement `execute_query`
8
"""
9
10
from typing import Iterable
11
12
13
def execute_query(sql, parameters: Iterable[str] = ...):
- """No need to implement it"""
14
+ ...
15
16
17
## End of your code ##
challenges/intermediate-literalstring/solution.py
@@ -3,6 +3,8 @@
from typing import LiteralString, Iterable
0 commit comments