Skip to content

Commit ff4d62c

Browse files
committed
chore(ruff): format with ruff 0.3.0
See also: https://github.com/astral-sh/ruff/blob/v0.3.0/CHANGELOG.md
1 parent aebf1b0 commit ff4d62c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+83
-1
lines changed

docs/_ext/aafig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
:author: Leandro Lucarella <[email protected]>
1212
:license: BOLA, see LICENSE for details
1313
"""
14+
1415
import logging
1516
import posixpath
1617
import typing as t

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# flake8: NOQA: E501
22
"""Sphinx documentation configuration for tmuxp."""
3+
34
import contextlib
45
import inspect
56
import pathlib

src/tmuxp/__about__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Metadata for tmuxp package."""
2+
23
__title__ = "tmuxp"
34
__package_name__ = "tmuxp"
45
__version__ = "1.39.0"

src/tmuxp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
:copyright: Copyright 2013- Tony Narlock.
55
:license: MIT, see LICENSE for details
66
"""
7+
78
from . import cli, util
89
from .__about__ import (
910
__author__,

src/tmuxp/_internal/config_reader.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Configuration parser for YAML and JSON files."""
2+
23
import json
34
import pathlib
45
import typing as t

src/tmuxp/_internal/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
... from tmuxp._internal.types import PluginConfigSchema
1010
...
1111
"""
12+
1213
import typing as t
1314

1415
from typing_extensions import NotRequired, TypedDict

src/tmuxp/cli/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""CLI utilities for tmuxp."""
2+
23
import argparse
34
import logging
45
import os

src/tmuxp/cli/convert.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""CLI for ``tmuxp convert`` subcommand."""
2+
23
import argparse
34
import os
45
import pathlib

src/tmuxp/cli/debug_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""CLI for ``tmuxp debug-info`` subcommand."""
2+
23
import argparse
34
import os
45
import pathlib

src/tmuxp/cli/edit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""CLI for ``tmuxp edit`` subcommand."""
2+
23
import argparse
34
import os
45
import pathlib

0 commit comments

Comments
 (0)