MCPcopy Create free account
hub / github.com/openai/openai-agents-python / Bar

Class Bar

tests/test_doc_parsing.py:49–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47
48
49class Bar:
50 def func_bar(self, a: int, b: float) -> str:
51 """
52 This is func_bar.
53
54 Args:
55 a: The first argument.
56 b: The second argument.
57
58 Returns:
59 A result
60 """
61 return "ok"
62
63 @classmethod
64 def func_baz(cls, a: int, b: float) -> str:
65 """
66 This is func_baz.
67
68 Args:
69 a: The first argument.
70 b: The second argument.
71
72 Returns:
73 A result
74 """
75 return "ok"
76
77
78def test_functions_are_ok():

Callers 2

test_functions_are_okFunction · 0.70
test_instance_methodFunction · 0.70

Calls

no outgoing calls

Tested by 2

test_functions_are_okFunction · 0.56
test_instance_methodFunction · 0.56