docs: remove http from batch execute docs (#1003)

`http=http` is optional

Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)

Fixes #1002  🦕
diff --git a/docs/batch.md b/docs/batch.md
index b8b3105..260c128 100644
--- a/docs/batch.md
+++ b/docs/batch.md
@@ -70,7 +70,7 @@
 
 batch.add(service.animals().list(), callback=list_animals)
 batch.add(service.farmers().list(), callback=list_farmers)
-batch.execute(http=http)
+batch.execute()
 ```
 
 ```python
@@ -90,5 +90,5 @@
 batch.add(service.animals().insert(name="sheep"))
 batch.add(service.animals().insert(name="pig"))
 batch.add(service.animals().insert(name="llama"))
-batch.execute(http=http)
+batch.execute()
 ```