hotfix: add type hints to scheduler mixins (#15916)

This commit is contained in:
Cheng Wan
2025-12-26 17:08:11 -08:00
committed by GitHub
parent 988b14ca0e
commit 2ec57cefd9
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
from __future__ import annotations
import logging
import os
import time

View File

@@ -2,6 +2,8 @@
Mixin class providing multiplexing scheduling logic
"""
from __future__ import annotations
import logging
from typing import TYPE_CHECKING