Fix most of line length errors plus some other errors#210
Conversation
License Check Results🚀 The license check job ran with the Bazel command: bazel run //src:license-checkStatus: Click to expand output |
|
The created documentation from the pull request is available at: docu-html |
| AssertionError, | ||
| match="Can only provide one tag to `my_pie_linked_standard_requirements_by_tag`", | ||
| match=( | ||
| "Can only provide one tag to " |
There was a problem hiding this comment.
This is an implicity concatination.
This should not be working / allowed.
Always make sure if you split a string accross multiple lines to excplitily concatinate it via a '+' or a multiline string
There was a problem hiding this comment.
Maybe we should discuss that + rule. It does seem rather unnatural
There was a problem hiding this comment.
Fixed. Please resolve.
|
@AlexanderLanin I think we should have a formatter enforce / reformat the lines too long (except comments and multiline strings) no? Seems much easier and then also consistent |
That's a good suggestion but we need to handle many cases like comments formatting |
First PR to address linting errors
This PR resolves 91 linting errors across the codebase.
The changes include:
elseblockfprefixes from strings when not required (e.g.,f"hello"→"hello")Note: Docs build and tests are running with no issues after the changes.
Related to: #205