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

Solution #853

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open

Solution #853

wants to merge 8 commits into from

Conversation

MykytaPD09
Copy link

No description provided.

app/main.py Outdated
# write your code here
pass
return {
"errors": [

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use existing format_linter_error function to avoid code duplication



def format_linter_report(linter_report: dict) -> list:
# write your code here
pass
return [

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use existing format_single_linter_file function to avoid code duplication

Copy link

@viktoria-rybenchuk viktoria-rybenchuk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You did`t fix all problems. Read comments

app/main.py Outdated
Comment on lines 20 to 21
return [format_single_linter_file(file_path, errors)
for file_path, errors in linter_report.items()]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return [format_single_linter_file(file_path, errors)
for file_path, errors in linter_report.items()]
return [
format_single_linter_file(file_path, errors
for file_path, errors in linter_report.items()
]

Copy link

@Dimosphen1 Dimosphen1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, well done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants