Skip to content

Commit 1216054

Browse files
committed
Fixup: code review
1 parent f689835 commit 1216054

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

newrelic/api/ml_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def record_llm_feedback_event(trace_id, rating, category=None, message=None, met
5858
"id": feedback_event_id,
5959
"trace_id": trace_id,
6060
"rating": rating,
61-
"category": category or "",
62-
"message": message or "",
61+
"category": category,
62+
"message": message,
6363
"ingest_source": "Python",
6464
}
6565
)

tests/agent_features/test_configuration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
global_settings_dump,
4747
)
4848

49-
from testing_support.fixtures import override_generic_settings
5049

5150
def function_to_trace():
5251
pass

0 commit comments

Comments
 (0)