Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor query fix changing session.execute to session.scalars
Since this query no longer looks at two columns, we should use scalars. Using execute returns a tuple ('4q4qw4',), for example, and IDE complains because we used serialized_dag.dag_hash to access the tuple. With scalars, it's now just the dag_hash that is returned
- Loading branch information