delete_all_ict_fixtures#
- Layer.delete_all_ict_fixtures(project, cca_name)#
Delete all ICT fixtures for a CCA.
- Parameters:
project (str) – Name of the Sherlock project.
cca_name (str) – Name of the CCA.
- Returns:
Status code of the response. 0 for success.
- Return type:
int
Examples
>>> from ansys.sherlock.core.launcher import launch_sherlock >>> sherlock = launch_sherlock() >>> sherlock.project.import_odb_archive( "ODB++ Tutorial.tgz", True, True, True, True, project="Test", cca_name="Card", ) >>> sherlock.layer.update_ict_fixtures_by_file( "Test", "Card", "ICTFixturesImport.csv", ) >>> sherlock.layer.delete_all_ict_fixtures("Test", "Card")