Skip to content

Commit 3d467f6

Browse files
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)
1 parent cadf62e commit 3d467f6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cortexapps_cli/cli.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
import cortexapps_cli.commands.deploys as deploys
2424
import cortexapps_cli.commands.discovery_audit as discovery_audit
2525
import cortexapps_cli.commands.docs as docs
26-
import cortexapps_cli.commands.entity_relationships as entity_relationships
27-
import cortexapps_cli.commands.entity_relationship_types as entity_relationship_types
2826
import cortexapps_cli.commands.entity_types as entity_types
2927
import cortexapps_cli.commands.gitops_logs as gitops_logs
3028
import cortexapps_cli.commands.groups as groups
@@ -59,8 +57,6 @@
5957
app.add_typer(deploys.app, name="deploys")
6058
app.add_typer(discovery_audit.app, name="discovery-audit")
6159
app.add_typer(docs.app, name="docs")
62-
app.add_typer(entity_relationships.app, name="entity-relationships")
63-
app.add_typer(entity_relationship_types.app, name="entity-relationship-types")
6460
app.add_typer(entity_types.app, name="entity-types")
6561
app.add_typer(gitops_logs.app, name="gitops-logs")
6662
app.add_typer(groups.app, name="groups")

0 commit comments

Comments
 (0)