Skip to content

Commit

Permalink
Extra lines for black
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-f0 committed May 13, 2024
1 parent 0881dc3 commit 4dbfb38
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions binder_trace/binder_trace/overrides.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Parsing override functions."""

from __future__ import annotations

import functools
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/parcel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Parcel parser."""

from __future__ import annotations

import functools
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/parsing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Parsing functionality."""

import functools
import logging
import traceback
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/data_types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Data types for TUI."""

import datetime
from typing import Optional

Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/filter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Filter logic."""

import json
from collections import UserList
from typing import Dict, List, Optional, TypeVar, Union
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/widget/filters.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Filters pane."""

from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.key_binding.bindings.focus import focus_next, focus_previous
from prompt_toolkit.layout import AnyContainer, HSplit, VerticalAlign, VSplit
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/widget/frame.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Frames for UI elements."""

from functools import partial
from typing import Callable, Optional

Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/widget/frequency.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Frequency frame UI."""

import csv
import io
import logging
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/widget/hexdump.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Hexdump Pane."""

from typing import Optional

import hexdump
Expand Down
1 change: 1 addition & 0 deletions binder_trace/binder_trace/tui/widget/toolbar.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Toolbar pane."""

from typing import Any, Callable, Sequence

from prompt_toolkit.formatted_text import AnyFormattedText, FormattedText
Expand Down

0 comments on commit 4dbfb38

Please sign in to comment.