Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: remove entity_relationships imports from wrong branch
Remove imports and app.add_typer calls for entity_relationships modules
that were accidentally included from another branch. These modules don't
exist yet and were causing ModuleNotFoundError in CI.

Related to #148 (not part of this fix)
  • Loading branch information
jeff-schnitter committed Nov 4, 2025
commit 3d467f699a0d4883316e039fcca571bde03d7f0a
4 changes: 0 additions & 4 deletions cortexapps_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
import cortexapps_cli.commands.deploys as deploys
import cortexapps_cli.commands.discovery_audit as discovery_audit
import cortexapps_cli.commands.docs as docs
import cortexapps_cli.commands.entity_relationships as entity_relationships
import cortexapps_cli.commands.entity_relationship_types as entity_relationship_types
import cortexapps_cli.commands.entity_types as entity_types
import cortexapps_cli.commands.gitops_logs as gitops_logs
import cortexapps_cli.commands.groups as groups
Expand Down Expand Up @@ -59,8 +57,6 @@
app.add_typer(deploys.app, name="deploys")
app.add_typer(discovery_audit.app, name="discovery-audit")
app.add_typer(docs.app, name="docs")
app.add_typer(entity_relationships.app, name="entity-relationships")
app.add_typer(entity_relationship_types.app, name="entity-relationship-types")
app.add_typer(entity_types.app, name="entity-types")
app.add_typer(gitops_logs.app, name="gitops-logs")
app.add_typer(groups.app, name="groups")
Expand Down
Loading