refactor: remove all inline comments from code

This commit is contained in:
2026-04-25 18:57:05 +03:00
parent bc1b914476
commit c85e981dc5
9 changed files with 2 additions and 144 deletions

View File

@@ -1,17 +1,8 @@
# Global pytest fixtures and configuration
# Shared across all test types
import sys
import pytest
# Disable Python bytecode cache
sys.dont_write_bytecode = True
@pytest.fixture(scope="session")
def event_loop_policy():
"""Use default event loop policy for asyncio tests."""
import asyncio
return asyncio.DefaultEventLoopPolicy()