Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 5, 2024
1 parent 2eef9c3 commit 1d81721
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions simpervisor/atexitasync.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Handles SIGINT and SIGTERM, unlike atexit
"""

import signal
import sys

Expand Down
1 change: 1 addition & 0 deletions simpervisor/process.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Simple asynchronous process supervisor
"""

import asyncio
import logging
import signal
Expand Down
1 change: 1 addition & 0 deletions tests/child_scripts/signalprinter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Print received SIGTERM & SIGINT signals
"""

import asyncio
import sys
from functools import partial
Expand Down
1 change: 1 addition & 0 deletions tests/child_scripts/signalsupervisor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Start a child process that prints signals it receives
"""

import asyncio
import os
import sys
Expand Down
1 change: 1 addition & 0 deletions tests/child_scripts/simplehttpserver.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Simple echo http server
"""

import os
import sys
import time
Expand Down

0 comments on commit 1d81721

Please sign in to comment.