Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

services: remove unused imports #1056

Merged
merged 1 commit into from
Mar 5, 2025
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
1 change: 0 additions & 1 deletion src/lava_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

import gzip
import json
import requests
import toml
import threading
import uvicorn
Expand Down
2 changes: 0 additions & 2 deletions src/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
# Author: Jeny Sadadia <jeny.sadadia@collabora.com>

import datetime
import json
import logging
import sys

import kernelci
Expand Down
1 change: 0 additions & 1 deletion src/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import yaml
import requests
import re
import time
import datetime

import kernelci
Expand Down
3 changes: 0 additions & 3 deletions src/test_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
# Author: Alexandra Pereira <alexandra.pereira@collabora.com>
# Author: Guillaume Tucker <guillaume.tucker@collabora.com>

import logging
import os
import sys
import traceback

import kernelci.config
import kernelci.db
Expand Down
6 changes: 1 addition & 5 deletions src/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,13 @@

import copy
from datetime import datetime, timedelta
import json
import logging
import sys
import time

import kernelci
import kernelci.build
import kernelci.config
import kernelci.db

from kernelci.legacy.cli import Args, Command, parse_opts
import urllib
import requests
import hashlib

Expand Down
Loading