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

Merge from master to kyu7 #503

Merged
merged 173 commits into from
Oct 24, 2024
Merged

Merge from master to kyu7 #503

merged 173 commits into from
Oct 24, 2024

Conversation

ikostan
Copy link
Member

@ikostan ikostan commented Oct 24, 2024

No description provided.

ikostan and others added 30 commits October 17, 2024 20:46
kyu_3/calculator/calculator.py:31: error: Argument 1 to "float" has incompatible type "Any | None"; expected "str | Buffer | SupportsFloat | SupportsIndex"  [arg-type]
kyu_3/calculator/calculator.py:87: error: Attribute "__string" already defined on line 19  [no-redef]
kyu_3/calculator/calculator.py:88: error: Attribute "__string" already defined on line 19  [no-redef]
kyu_3/calculator/calculator.py:90: error: Attribute "__string" already defined on line 19  [no-redef]
kyu_3/calculator/calculator.py:87: error: Attribute "__string" already defined on line 19  [no-redef]
kyu_3/calculator/calculator.py:89: error: Attribute "__string" already defined on line 19  [no-redef]
kyu_3/battleship_field_validator/validator.py:60: error: Name "ship" already defined on line 43  [no-redef]
kyu_3/battleship_field_validator/validator.py:100: error: Name "ship" already defined on line 83  [no-redef]
Missing whitespace after ',' New
            self.__process_math_expression(string,['*', '/']))
Severity: MinorFound in kyu_3/calculator/calculator.py by pep8
Missing whitespace after ',' New
            self.__process_math_expression(self.__string,['+', '-']))
Severity: MinorFound in kyu_3/calculator/calculator.py by pep8
Avoid deeply nested control flow statements. New
                    if all(is_valid_cell(ships=ships,
                                         field=field,
                                         cell=cell,
                                         direction='horizontal') for cell in ship):
                        ships[len(ship)].append(ship)
Severity: MajorFound in kyu_3/battleship_field_validator/validator.py - About 45 mins to fix
Avoid deeply nested control flow statements. New
                    if all(is_valid_cell(ships=ships,
                                         field=field,
                                         cell=cell,
                                         direction='vertical') for cell in ship):
                        ships[len(ship)].append(ship)
Severity: MajorFound in kyu_3/battleship_field_validator/validator.py - About 45 mins to fix
Avoid deeply nested control flow statements. New
                    if all(is_valid_cell_h):
                        ships[len(ship)].append(ship)

Severity: MajorFound in kyu_3/battleship_field_validator/validator.py - About 45 mins to fix
Avoid deeply nested control flow statements. New
                    if all(is_valid_cell(ships=ships,
                                         field=field,
                                         cell=cell,
                                         direction='vertical') for cell in ship):
                        ships[len(ship)].append(ship)
Severity: MajorFound in kyu_3/battleship_field_validator/validator.py - About 45 mins to fix
Avoid deeply nested control flow statements. New
                    if all_cells_valid(ships=ships,
                                       field=field,
                                       direction='horizontal',
                                       ship=ship):
                        ships[len(ship)].append(ship)
Severity: MajorFound in kyu_3/battleship_field_validator/validator.py - About 45 mins to fix
Avoid deeply nested control flow statements. New
                    if all_cells_valid(ships=ships,
                                       field=field,
                                       direction='vertical',
                                       ship=ship):
                        ships[len(ship)].append(ship)
Severity: MajorFound in kyu_3/battleship_field_validator/validator.py - About 45 mins to fix
Line too long (87 > 79 characters) New
                             direction=kwargs['direction']) for cell in kwargs['ship'])
Severity: MinorFound in kyu_3/battleship_field_validator/validator.py by pep8
Line too long (83 > 79 characters) New
                                                            direction='horizontal',
Severity: MinorFound in kyu_3/battleship_field_validator/validator.py by pep8
Line too long (81 > 79 characters) New
                                                            direction='vertical',
Severity: MinorFound in kyu_3/battleship_field_validator/validator.py by pep8
Merge pull request #485 from iKostanOrg/master
@ikostan ikostan added the kyu_7 label Oct 24, 2024
@ikostan ikostan self-assigned this Oct 24, 2024
@ikostan ikostan merged commit 9e4c222 into kyu7 Oct 24, 2024
12 of 13 checks passed
ikostan added a commit that referenced this pull request Oct 24, 2024
Merge pull request #503 from iKostanOrg/master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant