Skip to content

Commit

Permalink
CI: Bump pylint version (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener authored Oct 12, 2023
1 parent 9def6a3 commit e7e367a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# fails
git config --global --add safe.directory $(pwd)
pip install pre-commit
pip install pylint==2.12.2
pip install pylint==2.17.7
pip install flake8
echo "::endgroup::"
echo "::group::Run CMake"
Expand Down
3 changes: 1 addition & 2 deletions python/podio/EventStore.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ def __init__(self, filenames):

def __str__(self):
result = "Content:"
for item in self.current_store.getCollectionNames():
result += f"\n\t{item}"
result += "\n\t".join(n for n in self.current_store.getCollectionNames())
return result

def get(self, name):
Expand Down

0 comments on commit e7e367a

Please sign in to comment.