Skip to content

Commit 002a4b0

Browse files
authored
Apply pre-commit fix (#637)
1 parent eeb2659 commit 002a4b0

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

qumat/qiskit_backend.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ def execute_circuit(circuit, backend, backend_config):
8989
# Add measurements if they are not already present
9090
# Check if circuit already has measurement operations
9191
has_measurements = any(
92-
isinstance(inst.operation, qiskit.circuit.Measure)
93-
for inst in circuit.data
92+
isinstance(inst.operation, qiskit.circuit.Measure) for inst in circuit.data
9493
)
9594
if not has_measurements:
9695
circuit.measure_all()

website/community/index.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Community Overview
55

66
# Community Overview
77

8-
The Apache Mahout community consists of developers, users, data scientists, researchers, and open-source contributors who collaborate to build scalable machine-learning libraries on the Apache platform.
8+
The Apache Mahout community consists of developers, users, data scientists, researchers, and open-source contributors who collaborate to build scalable machine-learning libraries on the Apache platform.
99
Mahout follows the principles of the Apache Software Foundation — openness, transparency, community-driven development, and meritocracy.
1010

1111
This page explains the official communication channels, how to participate, and how to contribute to the project.
@@ -19,38 +19,38 @@ There are several ways to engage with the Mahout community:
1919
### 💬 Mailing Lists
2020
All official communication for Mahout happens on Apache-managed public mailing lists:
2121

22-
- **User List (questions, installation help, usage discussions):**
22+
- **User List (questions, installation help, usage discussions):**
2323
https://lists.apache.org/list.html?user@mahout.apache.org
2424

25-
- **Development List (design discussions, patches, roadmap, votes):**
25+
- **Development List (design discussions, patches, roadmap, votes):**
2626
https://lists.apache.org/list.html?dev@mahout.apache.org
2727

2828
To subscribe, send an empty email to:
2929

30-
- `user-subscribe@mahout.apache.org`
30+
- `user-subscribe@mahout.apache.org`
3131
- `dev-subscribe@mahout.apache.org`
3232

3333
---
3434

3535
### 🐛 Issue Tracking & Contributions
3636
Mahout uses **GitHub Issues and Pull Requests** for development.
3737

38-
- **Source Code:** https://github.com/apache/mahout
39-
- **Open Issues:** https://github.com/apache/mahout/issues
38+
- **Source Code:** https://github.com/apache/mahout
39+
- **Open Issues:** https://github.com/apache/mahout/issues
4040
- **Pull Requests:** https://github.com/apache/mahout/pulls
4141

4242
If you find a bug or want to propose a feature:
4343

44-
1. Open a GitHub issue
45-
2. Discuss the design on the **dev mailing list**
44+
1. Open a GitHub issue
45+
2. Discuss the design on the **dev mailing list**
4646
3. Submit a Pull Request
4747

4848
---
4949

5050
### 📘 Documentation & Website
5151
Contribute to documentation or help update website pages (like this one):
5252

53-
- https://mahout.apache.org
53+
- https://mahout.apache.org
5454
- Website source folder: `/website/`
5555

5656
Documentation improvements are always welcome — fixing broken links, updating examples, adding explanations, etc.
@@ -61,30 +61,30 @@ Documentation improvements are always welcome — fixing broken links, updating
6161

6262
Apache Mahout follows the ASF standard contribution process:
6363

64-
- Communicate on the mailing list before large changes
65-
- Submit well-tested Pull Requests
66-
- Follow project coding style and review guidelines
67-
- Participate in community discussions and votes
64+
- Communicate on the mailing list before large changes
65+
- Submit well-tested Pull Requests
66+
- Follow project coding style and review guidelines
67+
- Participate in community discussions and votes
6868
- Respect others — Mahout operates under the ASF Code of Conduct
6969

70-
ASF Code of Conduct:
70+
ASF Code of Conduct:
7171
https://www.apache.org/foundation/policies/conduct
7272

7373
---
7474

7575
## Community and Governance
7676

77-
Mahout is governed by the **Apache Mahout PMC** (Project Management Committee).
77+
Mahout is governed by the **Apache Mahout PMC** (Project Management Committee).
7878
The PMC is responsible for project direction, releases, and community oversight.
7979

8080
Contributors who consistently help the project through code, documentation, or community involvement may be invited to become:
8181

82-
- **Committers** — have write access to the repository
82+
- **Committers** — have write access to the repository
8383
- **PMC Members** — participate in project decision-making
8484

8585
Mahout community decisions are made publicly on the **dev@mahout.apache.org** mailing list following ASF voting rules.
8686

8787
---
8888

89-
Thank you for being part of the Apache Mahout community!
90-
Contributions of all kinds — code, documentation, discussion, or feedback — help keep the project healthy and evolving.
89+
Thank you for being part of the Apache Mahout community!
90+
Contributions of all kinds — code, documentation, discussion, or feedback — help keep the project healthy and evolving.

0 commit comments

Comments
 (0)