Skip to content

Commit

Permalink
black 24.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjc committed May 6, 2024
1 parent c1af640 commit 65fc669
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions flake8_rst_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
This is a plugin for the tool flake8 tool for checking Python
source code.
"""

import ast
import re

Expand Down
1 change: 1 addition & 0 deletions tests/RST208/option_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
The end.
""" # noqa: E501

import sys

print("Called with %i command line arguments" % (len(sys.argv) - 1))
1 change: 1 addition & 0 deletions tests/test_all.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test suite."""

import ast
import glob
import os.path
Expand Down
4 changes: 2 additions & 2 deletions tests/test_cases/example_unicode.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
u"""This module has an explicit UTF-8 encoding and unicode docstring.
"""This module has an explicit UTF-8 encoding and unicode docstring.
The following text is a short sentence in Japanese:
Expand All @@ -12,7 +12,7 @@

def hello_jp():
"""Return 'Hello' in Japanese ('こんにちは')."""
return u"こんにちは"
return "こんにちは"


__all__ = ("hello_jp",) # single entry tuple
Expand Down

0 comments on commit 65fc669

Please sign in to comment.