As usual, I think I tried to over complicate this, I was able to get my function to work by removing the action and adding my action to it simply by adding the code below:
remove_action( 'init', 'sandbox_widgets_init' );
add_action( 'init', 'mysandbox_widgets_init' );
Thanks for the quick reply.