Skip to content

Commit

Permalink
Respond nits
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed Sep 27, 2023
1 parent 2893aa9 commit 1973314
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
6 changes: 3 additions & 3 deletions src/tools/interop/idt/.gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
*~
.DS_Store
./venv/
.idea/
IDT_ARTIFACTS/
OUT/
__pycache__/
.zip
IDT_ARTIFACTS/
pycache/
./venv/
.zip
12 changes: 6 additions & 6 deletions src/tools/interop/idt/capture/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
from .shell_utils import BashRunner

__all__ = [
'PlatformLogStreamer',
'EcosystemCapture',
'CapturePlatforms',
'CaptureEcosystems',
'platform',
'ecosystem',
'BashRunner',
'CaptureEcosystems',
'CapturePlatforms',
'EcosystemCapture',
'PacketCaptureRunner',
'PlatformLogStreamer',
'ecosystem',
'platform',
]
6 changes: 0 additions & 6 deletions src/tools/interop/idt/capture/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@
from typing import TextIO


def warn_if_file_not_growing() -> None:
# TODO
"""Used to verify streamed files are growing in size and warn if not"""
pass


def add_border(to_print: str) -> str:
"""Add star borders to important strings"""
return '\n' + '*' * len(to_print) + '\n' + to_print
Expand Down

0 comments on commit 1973314

Please sign in to comment.