You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
session = connection_pool.get_session('root', 'nebula')
result = session.execute('example')
In class Session init, self._timezone_offset = auth_result.get_timezone_offset()
It may expect an integer value, but actually it's None.
so it calls an error:
File "nebula2/data/DataObject.py", line 885, in __repr__
return "utc datetime: %d-%02d-%02dT%02d:%02d:%02d.%06d, timezone_offset: %d" % (
TypeError: %d format: a number is required, not NoneType
The text was updated successfully, but these errors were encountered:
example code in README.md:
In class Session init,
self._timezone_offset = auth_result.get_timezone_offset()
It may expect an integer value, but actually it's None.
so it calls an error:
The text was updated successfully, but these errors were encountered: