Skip to content

Commit 65fc669

Browse files
committed
black 24.2.4
1 parent c1af640 commit 65fc669

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

flake8_rst_docstrings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This is a plugin for the tool flake8 tool for checking Python
44
source code.
55
"""
6+
67
import ast
78
import re
89

tests/RST208/option_list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
3434
The end.
3535
""" # noqa: E501
36+
3637
import sys
3738

3839
print("Called with %i command line arguments" % (len(sys.argv) - 1))

tests/test_all.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test suite."""
2+
23
import ast
34
import glob
45
import os.path

tests/test_cases/example_unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
u"""This module has an explicit UTF-8 encoding and unicode docstring.
2+
"""This module has an explicit UTF-8 encoding and unicode docstring.
33
44
The following text is a short sentence in Japanese:
55
@@ -12,7 +12,7 @@
1212

1313
def hello_jp():
1414
"""Return 'Hello' in Japanese ('こんにちは')."""
15-
return u"こんにちは"
15+
return "こんにちは"
1616

1717

1818
__all__ = ("hello_jp",) # single entry tuple

0 commit comments

Comments
 (0)