| 47 | |
| 48 | |
| 49 | class 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 | |
| 78 | def test_functions_are_ok(): |
no outgoing calls