Skip to content

Commit d0a7b24

Browse files
committed
v4.0.0
1 parent b250377 commit d0a7b24

68 files changed

Lines changed: 701 additions & 684 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/PULL_REQUEST_TEMPLATE

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212
- [ ] Documentation
1313
- [ ] CI/CD or build configuration
1414
- [ ] Dependencies update
15+
- [ ] Other
1516

1617
## Testing
17-
- [ ] Unit tests added/updated
18-
- [ ] Integration tests added/updated
19-
- [ ] All existing tests pass
2018
- [ ] Manual testing performed
2119

22-
## Checklist
23-
- [ ] Code follows the project's style and conventions
24-
- [ ] Documentation updated (if applicable)
25-
- [ ] No new warnings or linter errors introduced
26-
- [ ] I have considered how this change may affect other services
27-
2820
## Reviewer
2921
- [ ] I understand that by approving this PR, I share responsibility for these changes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ddcDatabases Environment Variables Example
1+
# ddcdatabases Environment Variables Example
22
# Copy this file to .env and adjust values as needed
33

44
# SQLite Database Settings
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from __future__ import annotations
2-
32
import logging
43
import sqlalchemy as sa
54
from .configs import BaseOperationRetryConfig, BaseRetryConfig
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class SettingsMessages:
6969
HOST_DESCRIPTION = "Database host"
7070
PORT_DESCRIPTION = "Database port"
7171
USERNAME_DESCRIPTION = "Database username"
72-
PASSWORD_DESCRIPTION = "Database password"
72+
PASSWORD_DESCRIPTION = "Database password" # noqa: S105
7373
NAME_DESCRIPTION = "Database name"
7474
SCHEMA_DESCRIPTION = "Database schema (comma-separated for multiple schemas, e.g. 'gw2,public')"
7575
ASYNC_DATABASE_DRIVER_DESCRIPTION = "Async database driver"
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from __future__ import annotations
2-
32
import logging
43
import sqlalchemy as sa
54
from .configs import BaseOperationRetryConfig
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"""
88

99
from __future__ import annotations
10-
1110
import asyncio
1211
import logging
1312
import ssl as _ssl_module

0 commit comments

Comments
 (0)