Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update poetry lock and reformat #186

Merged
merged 5 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def method_with_parameters_on_multiple_lines(x, y):

def method_with_bad_names_on_single_line(
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_name,
my_other_Bad_name, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
):
"""Provide parameters with bad names on single line."""
return myBadlyNamedParam + my_other_Bad_name
Expand All @@ -52,7 +52,7 @@ def method_with_bad_names_on_multiple_lines_1(

def method_with_bad_names_on_multiple_lines_2(
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_name,
my_other_Bad_name, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
):
"""Provide parameters with bad names on multiple lines."""
return myBadlyNamedParam + my_other_Bad_name
Expand Down Expand Up @@ -81,7 +81,7 @@ def method_withBadName_with_parameters_on_multiple_lines( # noqa: N802 - functi

def method_withBadName_with_bad_params_on_single_line( # noqa: N802 - function name 'method_withBadName_with_bad_params_on_single_line' should be lowercase (auto-generated noqa)
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_name,
my_other_Bad_name, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
):
"""Provide parameters with bad names on single line."""
return myBadlyNamedParam + my_other_Bad_name
Expand All @@ -96,7 +96,7 @@ def method_withBadName_with_bad_params_on_multiple_lines_1( # noqa: N802 - func

def method_withBadName_with_bad_params_on_multiple_lines_2( # noqa: N802 - function name 'method_withBadName_with_bad_params_on_multiple_lines_2' should be lowercase (auto-generated noqa)
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_name,
my_other_Bad_name, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
):
"""Provide parameters with bad names on multiple lines."""
return myBadlyNamedParam + my_other_Bad_name
Expand All @@ -105,7 +105,7 @@ def method_withBadName_with_bad_params_on_multiple_lines_2( # noqa: N802 - func
def method_withBadName_andParams( # noqa: N802 - function name 'method_withBadName_andParams' should be lowercase (auto-generated noqa)
my_normal_param,
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_param,
my_other_Bad_param, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
):
"""Provide example where black will want to split out result."""
return 5 + 7
Expand All @@ -114,7 +114,7 @@ def method_withBadName_andParams( # noqa: N802 - function name 'method_withBadN
def method_withBadName_and_bad_param_with_long_name( # noqa: N802 - function name 'method_withBadName_and_bad_param_with_long_name' should be lowercase (auto-generated noqa)
my_normal_param,
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_param,
my_other_Bad_param, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
):
"""Provide example where black will want to split out result even more""" # noqa: D415, W505 - First line should end with a period, question mark, or exclamation point (auto-generated noqa), doc line too long (188 > 100 characters) (auto-generated noqa)
return 5 + 7
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def problem_chars(self):
def method_withBadName_andParams( # noqa: N802 - function name 'method_withBadName_andParams' should be lowercase (auto-generated noqa)
my_normal_param,
myBadlyNamedParam, # noqa: N803 - argument name 'myBadlyNamedParam' should be lowercase (auto-generated noqa)
my_other_Bad_param,
my_other_Bad_param, # noqa: N803 - argument name 'my_other_Bad_name' should be lowercase (auto-generated noqa)
mshafer-NI marked this conversation as resolved.
Show resolved Hide resolved
):
"""Provide example where black will want to split out result."""
return 5 + 7
Loading