Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,8 @@ module = [
# FIXME: DO NOT MERGE THIS INTO DEVELOP BRANCH UNLESS THESE ARE PASSING OR
# REMOVED!!
"smartsim._core._cli.*",
"smartsim._core.control.controller",
"smartsim._core.control.manifest",
"smartsim._core.entrypoints.dragon_client",
"smartsim._core.launcher.colocated",
"smartsim._core.launcher.launcher",
"smartsim._core.launcher.local.*",
"smartsim._core.launcher.lsf.*",
Expand Down
4 changes: 2 additions & 2 deletions smartsim/_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from .control import Controller, Manifest, preview_renderer
from .control import Manifest, preview_renderer
from .generation import Generator

__all__ = ["Controller", "Manifest", "Generator", "preview_renderer"]
__all__ = ["Manifest", "Generator", "preview_renderer"]
1 change: 0 additions & 1 deletion smartsim/_core/control/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from .controller import Controller
from .manifest import Manifest
Loading