From 9ac8f6fe3448eeb48d69783c29f27d602e378e87 Mon Sep 17 00:00:00 2001 From: "Jokob @NetAlertX" <96159884+jokob-sk@users.noreply.github.com> Date: Wed, 11 Feb 2026 04:21:03 +0000 Subject: [PATCH] fixes --- .github/skills/code-standards/SKILL.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/skills/code-standards/SKILL.md b/.github/skills/code-standards/SKILL.md index 16eabd86..e398323a 100644 --- a/.github/skills/code-standards/SKILL.md +++ b/.github/skills/code-standards/SKILL.md @@ -50,9 +50,9 @@ timestamp = timeNowUTC() This is the ONLY function that calls datetime.datetime.now() in the entire codebase. ⚠️ CRITICAL: ALL database timestamps MUST be stored in UTC -# This is the SINGLE SOURCE OF TRUTH for current time in NetAlertX -# Use timeNowUTC() for DB writes (returns UTC string by default) -# Use timeNowUTC(as_string=False) for datetime operations (scheduling, comparisons, logging) +This is the SINGLE SOURCE OF TRUTH for current time in NetAlertX +Use timeNowUTC() for DB writes (returns UTC string by default) +Use timeNowUTC(as_string=False) for datetime operations (scheduling, comparisons, logging) ## String Sanitization