Class method to return a string value. This method returns the string value 'sam'. Parameters: cls: The class object. *args: Variable length argument list. **kwargs: Arbitrary keyword arguments. Returns: str: The str
(cls, *args, **kwargs)
| 375 | |
| 376 | @classmethod |
| 377 | def name(cls, *args, **kwargs): |
| 378 | """ |
| 379 | Class method to return a string value. |
| 380 | |
| 381 | This method returns the string value 'sam'. |
| 382 | |
| 383 | Parameters: |
| 384 | cls: The class object. |
| 385 | *args: Variable length argument list. |
| 386 | **kwargs: Arbitrary keyword arguments. |
| 387 | |
| 388 | Returns: |
| 389 | str: The string value 'sam'. |
| 390 | """ |
| 391 | return "sam" |
no outgoing calls
no test coverage detected