IPv4 Multiple Addresses Helper Function (create_ipv4_list_observables) calls create_ipv4_observable function, which returns Observable type, but then attempts to wrap the Observable type in an Observable using the Observable() class constructor.
Issue Fix
Don't do secondary wrapping, or don't return Observable type from create_ipv4_observable function.
Issue Details
IPv4 Multiple Addresses Helper Function (
create_ipv4_list_observables
) callscreate_ipv4_observable
function, which returnsObservable
type, but then attempts to wrap theObservable
type in anObservable
using theObservable()
class constructor.Issue Fix
Don't do secondary wrapping, or don't return
Observable
type fromcreate_ipv4_observable
function.Issue Location
Issue is in the helper functions here.