surfrdf icon indicating copy to clipboard operation
surfrdf copied to clipboard

Fix query reader: conversion of zero values

Open franzlst opened this issue 3 years ago • 0 comments

The _convert.py method of the QueryReader used if value: to check if a value is present. This fails, if the value evaluates to False, which is the case e.g. for the integer value 0. This pull request replaces this line by if value is not None:

franzlst avatar Oct 08 '21 12:10 franzlst