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
4 changes: 4 additions & 0 deletions src/openhound/core/logging.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import os

os.environ.setdefault("RUNTIME__DLTHUB_TELEMETRY", "false")

import json
import logging
import os
Expand Down
3 changes: 0 additions & 3 deletions src/openhound/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from pathlib import Path

import dlt

import openhound.core.logging # noqa: F401
from openhound.cli.collect import collect
from openhound.cli.convert import convert
Expand All @@ -13,7 +11,6 @@

BASE_SOUCE_PATH = Path(__file__).parent / "sources"

dlt.config["runtime.dlthub_telemetry"] = False
app = TyperOverride(sources_path=BASE_SOUCE_PATH, pretty_exceptions_enable=True)

app.add_typer(collect, name="collect")
Expand Down
Loading