File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212from csp .impl .wiring .outputs import OutputsContainer
1313from csp .impl .wiring .special_output_names import UNNAMED_OUTPUT_NAME
1414
15- USE_PYDANTIC : bool = os .environ .get ("CSP_PYDANTIC" )
15+ USE_PYDANTIC : bool = os .environ .get ("CSP_PYDANTIC" , True )
1616
1717if USE_PYDANTIC :
1818 from pydantic import (
Original file line number Diff line number Diff line change 2121from csp .impl .wiring .runtime import build_graph
2222from csp .lib import _csptestlibimpl
2323
24- USE_PYDANTIC = os .environ .get ("CSP_PYDANTIC" )
24+ USE_PYDANTIC = os .environ .get ("CSP_PYDANTIC" , True )
2525
2626
2727@csp .graph
Original file line number Diff line number Diff line change 1313from csp .impl .types .typing_utils import CspTypingUtils
1414from csp .impl .wiring .runtime import build_graph
1515
16- USE_PYDANTIC = os .environ .get ("CSP_PYDANTIC" )
16+ USE_PYDANTIC = os .environ .get ("CSP_PYDANTIC" , True )
1717
1818
1919class TestTypeChecking (unittest .TestCase ):
You can’t perform that action at this time.
0 commit comments