mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-02-13 23:59:00 -06:00
- Normalize line endings from CRLF to LF across all files to match .editorconfig - Standardize quote style from single quotes to double quotes - Normalize whitespace and formatting throughout codebase - Apply consistent code style across 372 files including: * Application code (models, routes, services, utils) * Test files * Configuration files * CI/CD workflows This ensures consistency with the project's .editorconfig settings and improves code maintainability.
8 lines
102 B
Python
8 lines
102 B
Python
"""
|
|
Integration connectors package.
|
|
"""
|
|
|
|
from .base import BaseConnector
|
|
|
|
__all__ = ["BaseConnector"]
|