Skip to content

Commit c455bff

Browse files
committed
$ black .
1 parent 9bedd40 commit c455bff

File tree

6 files changed

+19
-67
lines changed

6 files changed

+19
-67
lines changed

python_humble_utils/commands.py

+4-12
Original file line numberDiff line numberDiff line change
@@ -113,24 +113,18 @@ def yield_file_paths(
113113
:return: file paths.
114114
"""
115115

116-
def filter_allowed_file_paths(
117-
dp: str, fbs: Sequence[str], afe: Sequence[str]
118-
) -> Iterable[str]:
116+
def filter_allowed_file_paths(dp: str, fbs: Sequence[str], afe: Sequence[str]) -> Iterable[str]:
119117
for fb in fbs:
120118
p = os.path.join(dp, fb)
121119
if extract_file_name_and_extension(p).extension in afe:
122120
yield p
123121

124122
if recursively:
125123
for root_dir_path, _, file_basenames in os.walk(dir_path):
126-
yield from filter_allowed_file_paths(
127-
dir_path, file_basenames, allowed_file_extensions
128-
)
124+
yield from filter_allowed_file_paths(dir_path, file_basenames, allowed_file_extensions)
129125
else:
130126
file_basenames = os.listdir(dir_path)
131-
yield from filter_allowed_file_paths(
132-
dir_path, file_basenames, allowed_file_extensions
133-
)
127+
yield from filter_allowed_file_paths(dir_path, file_basenames, allowed_file_extensions)
134128

135129

136130
def create_or_update_file(
@@ -154,9 +148,7 @@ def camel_or_pascal_case_to_snake_case(s: str) -> str:
154148
:param s: string in `camelCase` or `PascalCase`.
155149
:return: string in `snake_case`.
156150
"""
157-
snake_case = re.sub(
158-
"([a-z0-9])([A-Z])", r"\1_\2", re.sub("(.)([A-Z][a-z]+)", r"\1_\2", s)
159-
)
151+
snake_case = re.sub("([a-z0-9])([A-Z])", r"\1_\2", re.sub("(.)([A-Z][a-z]+)", r"\1_\2", s))
160152
snake_case = snake_case.lower()
161153
return snake_case
162154

python_humble_utils/pytest_commands.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ def generate_tmp_file_path(
2121
# Accounting for possible path separator at the end.
2222
if tmp_file_dir_path_part:
2323
tmpdir_factory.mktemp(tmp_file_dir_path_part)
24-
tmp_file_path = os.path.join(
25-
str(basetemp), tmp_dir_path, file_name_with_extension
26-
)
24+
tmp_file_path = os.path.join(str(basetemp), tmp_dir_path, file_name_with_extension)
2725
else:
2826
tmp_file_path = str(basetemp.join(file_name_with_extension))
2927

setup.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,5 @@
3333
"Programming Language :: Python :: 3.6",
3434
"Programming Language :: Python :: 3.7",
3535
],
36-
keywords=[
37-
"python",
38-
"humble",
39-
"utility",
40-
"utilities",
41-
"util",
42-
"utils",
43-
"helper",
44-
"helpers",
45-
],
36+
keywords=["python", "humble", "utility", "utilities", "util", "utils", "helper", "helpers"],
4637
)

tests/test_commands.py

+8-27
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ def test_extract_file_dir_path(file_meta: FileMeta):
5050
@mark.parametrize(
5151
"tup,verifier",
5252
[
53-
(
54-
"('text', 42)",
55-
lambda tup: isinstance(tup, tuple) and tup[0] == "text" and tup[1] == 42,
56-
),
53+
("('text', 42)", lambda tup: isinstance(tup, tuple) and tup[0] == "text" and tup[1] == 42),
5754
("()", lambda tup: tup == ()),
5855
],
5956
)
@@ -79,9 +76,7 @@ def test_generate_random_dir_path(subdir_count: int):
7976

8077

8178
@given(subdir_count=integers(max_value=-1))
82-
def test_when_generating_random_dir_path_given_invalid_arguments_should_raise(
83-
subdir_count: int
84-
):
79+
def test_when_generating_random_dir_path_given_invalid_arguments_should_raise(subdir_count: int):
8580
with raises(ValueError):
8681
generate_random_dir_path(subdir_count)
8782

@@ -91,10 +86,7 @@ def test_when_generating_random_file_name_with_extension_given_valid_arguments_s
9186
):
9287
file_extension = file_meta.extension
9388
actual_file_basename = generate_random_file_name_with_extension(file_extension)
94-
assert (
95-
extract_file_name_and_extension(actual_file_basename).extension
96-
== file_extension
97-
)
89+
assert extract_file_name_and_extension(actual_file_basename).extension == file_extension
9890

9991

10092
@mark.parametrize(
@@ -105,14 +97,9 @@ def test_when_generating_random_file_name_with_extension_given_valid_arguments_s
10597
],
10698
)
10799
def test_read_file(
108-
tmpdir_factory,
109-
file_meta: FileMeta,
110-
as_single_line: bool,
111-
verifier: Callable[[str], bool],
100+
tmpdir_factory, file_meta: FileMeta, as_single_line: bool, verifier: Callable[[str], bool]
112101
):
113-
tmp_file_path = generate_tmp_file_path(
114-
tmpdir_factory, file_meta.name_with_extension
115-
)
102+
tmp_file_path = generate_tmp_file_path(tmpdir_factory, file_meta.name_with_extension)
116103
create_or_update_file(tmp_file_path, file_meta.content, file_meta.content_encoding)
117104

118105
file_content = read_file(tmp_file_path, as_single_line)
@@ -147,17 +134,13 @@ def test_get_file_paths(
147134
# ...with a disallowed extension:
148135
file_extension_suffix = "z"
149136
if len(allowed_file_extensions) > 0:
150-
disallowed_file_extension = (
151-
allowed_file_extensions[-1] + file_extension_suffix
152-
)
137+
disallowed_file_extension = allowed_file_extensions[-1] + file_extension_suffix
153138
else:
154139
disallowed_file_extension = ".{}".format(file_extension_suffix)
155140
disallowed_file_name_with_extension = generate_random_file_name_with_extension(
156141
disallowed_file_extension
157142
)
158-
disallowed_file_path = os.path.join(
159-
dir_path, disallowed_file_name_with_extension
160-
)
143+
disallowed_file_path = os.path.join(dir_path, disallowed_file_name_with_extension)
161144
# ...with allowed extensions:
162145
allowed_file_names_with_extension = [
163146
generate_random_file_name_with_extension(e) for e in allowed_file_extensions
@@ -202,9 +185,7 @@ def test_when_creating_or_updating_file_given_file_exists_should_update_file(
202185
file.write(file_meta.content.encode(file_meta.content_encoding))
203186

204187
updated_file_content = file_meta.content + " (+ this update)"
205-
create_or_update_file(
206-
tmp_file_path, updated_file_content, file_meta.content_encoding
207-
)
188+
create_or_update_file(tmp_file_path, updated_file_content, file_meta.content_encoding)
208189

209190
with open(tmp_file_path, "rb") as file:
210191
assert file.read().decode(file_meta.content_encoding) == updated_file_content

tests/test_pytest_commands.py

+3-9
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,13 @@ def test_when_generating_tmp_file_path_given_abs_tmp_dir_path_should_raise(
2424
tmpdir_factory, file_meta: FileMeta
2525
):
2626
with raises(ValueError):
27-
abs_tmp_dir_path = os.path.join(
28-
str(tmpdir_factory.getbasetemp()), file_meta.dir_path
29-
)
30-
generate_tmp_file_path(
31-
tmpdir_factory, file_meta.name_with_extension, abs_tmp_dir_path
32-
)
27+
abs_tmp_dir_path = os.path.join(str(tmpdir_factory.getbasetemp()), file_meta.dir_path)
28+
generate_tmp_file_path(tmpdir_factory, file_meta.name_with_extension, abs_tmp_dir_path)
3329

3430

3531
def test_when_generating_tmp_file_path_given_no_tmp_dir_path_should_succeed(
3632
tmpdir_factory, file_meta: FileMeta
3733
):
3834
actual = generate_tmp_file_path(tmpdir_factory, file_meta.name_with_extension)
39-
expected = os.path.join(
40-
str(tmpdir_factory.getbasetemp()), file_meta.name_with_extension
41-
)
35+
expected = os.path.join(str(tmpdir_factory.getbasetemp()), file_meta.name_with_extension)
4236
assert actual == expected

travis_pypi_setup.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
from urllib.request import urlopen
2121

2222
GITHUB_REPO = "webyneter/python-humble-utils"
23-
TRAVIS_CONFIG_FILE = os.path.join(
24-
os.path.dirname(os.path.abspath(__file__)), ".travis.yml"
25-
)
23+
TRAVIS_CONFIG_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), ".travis.yml")
2624

2725

2826
def load_key(pubkey):
@@ -124,9 +122,7 @@ def main(args):
124122
parser.add_argument(
125123
"--repo", default=GITHUB_REPO, help="GitHub repo (default: %s)" % GITHUB_REPO
126124
)
127-
parser.add_argument(
128-
"--password", help="PyPI password (will prompt if not provided)"
129-
)
125+
parser.add_argument("--password", help="PyPI password (will prompt if not provided)")
130126

131127
args = parser.parse_args()
132128
main(args)

0 commit comments

Comments
 (0)