z-agent / papers-context /agent_workspace /manim_docs /reference /manim.data_structures.MethodWithArgs.md
ProgramerSalar's picture
fix: track binary files with Git LFS
dc00adb
|
Raw
History Blame Contribute Delete
1.2 kB

A newer version of the Gradio SDK is available: 6.20.0

Upgrade

MethodWithArgs

Qualified name: manim.data\_structures.MethodWithArgs

class MethodWithArgs(method, args, kwargs)

Bases: object

Object containing a method which is intended to be called later with the positional arguments args and the keyword arguments kwargs.

  • Parameters:
    • method (MethodType)
    • args (Iterable *[*Any ])
    • kwargs (dict *[*str , Any ])

method

A callable representing a method of some class.

  • Type: MethodType

args

Positional arguments for method.

  • Type: Iterable[Any]

kwargs

Keyword arguments for method.

  • Type: dict[str, Any]

Methods

Attributes