|
|
|
|
|
by sanderjd
416 days ago
|
|
I really think you're misunderstanding the feature. If a method has a signature like: class DB:
def execute(query: Template):
...
It would be weird for the implementation to just concatenate everything in the template together into a string without doing any processing of the template parameters. If you wanted an unprocessed string, you would just have the parameter be a string. |
|