Neato BotVac Vacuum Cleaner Widget for HABPanel

I used your script before (on OH2.5), and on OH3 I wanted to revive it.

So I installed pybotvac and imported the robot.

But when I run get last map I get:

openhabian@homer:~/pybotvac $ python3 /etc/openhab/scripts/neato-botvac-getlastmap.py
Traceback (most recent call last):
  File "/etc/openhab/scripts/neato-botvac-getlastmap.py", line 12, in <module>
    account  = Account(email, password)
TypeError: __init__() takes 2 positional arguments but 3 were given

The script looks like (and worked in the past):

#!/usr/bin/python
from pybotvac import Account
from os       import system
email    = 'xxx'
password = 'xxx'
serial   = 'OPSxxx-xxx'
path_tmp = '/etc/openhab/html/tmp/'
path_dst = '/etc/openhab/html/neato-botvac/'
map_file = 'botvac-last-map.png'
account  = Account(email, password)
link     = account.maps[serial]['maps'][0]['url']
account.get_map_image(link, path_tmp)
system('mv ' + path_tmp + '*-user-map.png ' + path_dst + map_file)