mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-07 16:18:09 +00:00
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
10 lines
283 B
Python
10 lines
283 B
Python
"""Integration test for Sms."""
|
|
from langchain_community.utilities.twilio import TwilioAPIWrapper
|
|
|
|
|
|
def test_call() -> None:
|
|
"""Test that call runs."""
|
|
twilio = TwilioAPIWrapper() # type: ignore[call-arg]
|
|
output = twilio.run("Message", "+16162904619")
|
|
assert output
|