Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/fixtures/notebook/fixing/fixing9.ipynb
13405 views
Kernel: Unknown Kernel
from typing import List class _TestClass(): def __init__(self, input_shape: List[int], arg1: int, arg2, arg3=3): print(str(input_shape) + str(arg1) + str(arg2) + str(arg3)) def testInitWithCfg(): _ = _TestClass([2, 3], 2, 2, input_shape="shape")