Skip to content

Commit 7f1a717

Browse files
committed
Fix typo
1 parent a26cf2b commit 7f1a717

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: graphene_sqlalchemy/types.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def construct_fields(
110110
inspected_model = sqlalchemy.inspect(model)
111111
# Gather all the relevant attributes from the SQLAlchemy model in order
112112
all_model_attrs = OrderedDict(
113-
inspected_model.column_attrs.items() +
113+
inspected_model.column_attrs.items()
114114
+ inspected_model.composites.items()
115115
+ [(name, item) for name, item in inspected_model.all_orm_descriptors.items()
116116
if isinstance(item, hybrid_property)]

0 commit comments

Comments
 (0)