Hi there :slightly_smiling_face: I am kinda new in...
# singer-taps
i
Hi there 🙂 I am kinda new in here and apologies if I shouldn't be posting any question in this channel. I started my Meltano experience with tap-taboola, but I get the same error as raised in here: https://github.com/singer-io/tap-taboola/issues/14
"float() argument must be a string or number, not 'NoneType'"
Probably related to lines like this in init.py
'cpc': float(campaign.get('cpc', 0.0))
Wondering if anyone managed to solve the issue yet?
👀 1
Screenshot 2025-02-10 at 08.53.56.png
e
Other than forking to change it into something like
Copy code
float(campaign.get('cpc') or 0.0)
I don't see more options
🙌 1