orange-orm 4.3.0-beta.2 → 4.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/getManyDto.js CHANGED
@@ -209,7 +209,7 @@ async function decodeManyRelations(strategy, span) {
209
209
  async function decodeRelations2(strategy, span, rawRows, resultRows, keys) {
210
210
  const promises = [];
211
211
  const c = {};
212
- c.visitJoin = function (leg) {
212
+ c.visitJoin = function(leg) {
213
213
  const name = leg.name;
214
214
  const p = decode(strategy[name], leg.span, rawRows, keys).then((rows) => {
215
215
  for (let i = 0; i < rows.length; i++) {