We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3afef6b commit 3121809Copy full SHA for 3121809
examples/sqlalchemy_1.6_to_2.0/run.py
@@ -54,7 +54,7 @@ def run(codebase: Codebase):
54
if isinstance(attr.value, FunctionCall) and attr.value.name == "relationship":
55
if "lazy=" not in attr.value.source:
56
original_rel = attr.value.source
57
- new_rel = original_rel + ', lazy="selectin"'
+ new_rel = original_rel + ', lazy="select"'
58
if "backref" in new_rel:
59
new_rel = new_rel.replace("backref", "back_populates")
60
0 commit comments