File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""The Cyber Hygiene job runner."""
22
3- # Standard Python Libraries
4- from typing import List
5-
63# We disable a Flake8 check for "Module imported but unused (F401)" here because
74# although this import is not directly used, it populates the value
85# package_name.__version__, which is used to get version information about this
96# Python package.
107from ._version import __version__ # noqa: F401
118
12- __all__ : List [str ] = []
9+ __all__ : list [str ] = []
Original file line number Diff line number Diff line change 2525import subprocess # nosec
2626import sys
2727import time
28- from typing import Set
2928
3029# Third-Party Libraries
3130import daemon
5150
5251logger = logging .getLogger (__name__ )
5352
54- running_dirs : Set [str ] = set ()
53+ running_dirs : set [str ] = set ()
5554processes = []
5655IS_RUNNING = True
5756
You can’t perform that action at this time.
0 commit comments