Skip to content

Commit 7cb22ab

Browse files
committed
Add missing imports
Imports are commented-out for now until necessary implementation is available.
1 parent 5bf5f9f commit 7cb22ab

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

packit_service/worker/handlers/forges.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,25 @@
66
TODO: The build and test handlers are independent and should be moved away.
77
"""
88

9+
# import io
910
import logging
1011

12+
# import sys
1113
from packit.config import (
1214
Deployment,
1315
JobConfig,
1416
)
1517
from packit.config.package_config import PackageConfig
1618

17-
from packit_service.constants import CONTACTS_URL, DOCS_APPROVAL_URL, NOTIFICATION_REPO
19+
from packit_service.constants import (
20+
CONTACTS_URL,
21+
DOCS_APPROVAL_URL,
22+
# HELP_COMMENT_PROG,
23+
# HELP_COMMENT_PROG_FEDORA_CI,
24+
# HELP_COMMENT_DESCRIPTION,
25+
# HELP_COMMENT_EPILOG,
26+
NOTIFICATION_REPO,
27+
)
1828
from packit_service.events import (
1929
github,
2030
gitlab,
@@ -26,7 +36,9 @@
2636
GithubInstallationModel,
2737
)
2838
from packit_service.utils import (
29-
get_packit_commands_from_comment, # , get_pr_comment_parser, get_pr_comment_parser_fedora_ci
39+
get_packit_commands_from_comment,
40+
# get_pr_comment_parser,
41+
# get_pr_comment_parser_fedora_ci,
3042
)
3143
from packit_service.worker.allowlist import Allowlist
3244
from packit_service.worker.checker.abstract import Checker

0 commit comments

Comments
 (0)