Piotr Idzik

Results 106 issues of Piotr Idzik

## Type of Change - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation -...

I am having trouble with running some basic build. I follow the steps descried in the [`CONTRIBUTING.md`](https://github.com/boltlang/Bolt/blob/4ec25fc8665c855a879a759b1af83ad9ba1345d2/CONTRIBUTING.md). Basically I execute the following script: ```shell #!/usr/bin/env bash git clone https://github.com/boltlang/bolt git...

bug
blocker

The link: https://hub.flowpipe.io/mods does not work. Similar to: - turbot/tailpipe#583.

This PR resolves [`unnecessary-paren-on-raise-exception (RSE102)`](https://docs.astral.sh/ruff/rules/unnecessary-paren-on-raise-exception/#unnecessary-paren-on-raise-exception-rse102) warning. Note that [`pickle.UnpicklingError`](https://docs.python.org/3/library/pickle.html#pickle.UnpicklingError) is an exception, so the related change is _safe_.

**Describe the bug** Thread sanitizer reports data race, while executing `test_partition`: ``` 13/38 Testing: test_partition 13/38 Test: test_partition Command: "/some/path/CXXGraph/build/test/test_exe" "--gtest_filter=PartitionTest*" Directory: /some/path/CXXGraph/build/test "test_partition" start time: Oct 11 13:36 CEST...

**Describe the bug** I run the tests with the thread sanitizer. The `test_bfs` takes _forever_ to finish, which indicates that there might be some problem in `concurrency_breadth_first_search`. When I set...

This PR resolves the [`unnecessary-pass / W0107`](https://pylint.readthedocs.io/en/latest/user_guide/messages/warning/unnecessary-pass.html) lint.

Resolves the [`consider-iterating-dictionary / C0201`](https://pylint.readthedocs.io/en/latest/user_guide/messages/convention/consider-iterating-dictionary.html). There are no other occurrences of that warning.

This PR resolves the [`consider-using-enumerate / C0200`](https://pylint.readthedocs.io/en/stable/user_guide/messages/convention/consider-using-enumerate.html) in the most _obvious_ cases.

The removed code is never executed (cf. [`duplicate-except / W0705`](https://pylint.readthedocs.io/en/latest/user_guide/messages/warning/duplicate-except.html)).