Skip to content

Commit

Permalink
commit annotator: fix import paths (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleChimera authored Aug 22, 2024
1 parent 1f4df9a commit cdaed60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release-controller/commit_annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
import subprocess
import sys
import re
sys.path.append(os.path.join(os.path.dirname(__file__)))

from git_repo import GitRepo
from datetime import datetime
from tenacity import retry, stop_after_attempt
from util import bazel_binary

sys.path.append(os.path.join(os.path.dirname(__file__)))

GUESTOS_CHANGED_NOTES_NAMESPACE = "guestos-changed"
GUESTOS_TARGETS_NOTES_NAMESPACE = "guestos-targets"
Expand Down

0 comments on commit cdaed60

Please sign in to comment.