Release/v0.4.2 #2

Merged
rus07tam merged 4 commits from release/v0.4.2 into main 2025-10-29 18:15:30 +03:00
rus07tam commented 2025-10-29 18:13:04 +03:00 (Migrated from github.com)

Added python 3.10 support

Added python 3.10 support
sonarqubecloud[bot] commented 2025-10-29 18:13:35 +03:00 (Migrated from github.com)
## [![Quality Gate Passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/qg-passed-20px.png 'Quality Gate Passed')](https://sonarcloud.io/dashboard?id=RuJect_snakia&pullRequest=2) **Quality Gate passed** Issues ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0 New issues](https://sonarcloud.io/project/issues?id=RuJect_snakia&pullRequest=2&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/accepted-16px.png '') [0 Accepted issues](https://sonarcloud.io/project/issues?id=RuJect_snakia&pullRequest=2&issueStatuses=ACCEPTED) Measures ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=RuJect_snakia&pullRequest=2&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0.0% Coverage on New Code](https://sonarcloud.io/component_measures?id=RuJect_snakia&pullRequest=2&metric=new_coverage&view=list) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [1.5% Duplication on New Code](https://sonarcloud.io/component_measures?id=RuJect_snakia&pullRequest=2&metric=new_duplicated_lines_density&view=list) [See analysis details on SonarQube Cloud](https://sonarcloud.io/dashboard?id=RuJect_snakia&pullRequest=2)
codacy-production[bot] (Migrated from github.com) reviewed 2025-10-29 18:14:21 +03:00
@ -2,1 +1,4 @@
from typing import Any, NoReturn, TypeVar, overload
from exceptiongroup import ExceptionGroup
codacy-production[bot] (Migrated from github.com) commented 2025-10-29 18:14:21 +03:00

🚫 Codacy found a high ErrorProne issue: Redefining built-in 'ExceptionGroup'

The issue arises because the name ExceptionGroup being imported from the exceptiongroup module is conflicting with the built-in name ExceptionGroup in Python. This can lead to confusion or unexpected behavior since it redefines a built-in name.

To resolve this issue, you can rename the imported ExceptionGroup to avoid the conflict. Here's the suggested code change:

from exceptiongroup import ExceptionGroup as ImportedExceptionGroup

This comment was generated by an experimental AI tool.

:no_entry_sign: **Codacy** found a **high ErrorProne** issue: [Redefining built-in 'ExceptionGroup'](https://app.codacy.com/gh/RuJect/snakia/pull-requests/2) The issue arises because the name `ExceptionGroup` being imported from the `exceptiongroup` module is conflicting with the built-in name `ExceptionGroup` in Python. This can lead to confusion or unexpected behavior since it redefines a built-in name. To resolve this issue, you can rename the imported `ExceptionGroup` to avoid the conflict. Here's the suggested code change: ```suggestion from exceptiongroup import ExceptionGroup as ImportedExceptionGroup ``` --- *This comment was generated by an experimental AI tool.*
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: RuJect/snakia#2
No description provided.