Skip to content

Commit cd54594

Browse files
abrichrclaude
andauthored
fix: resolve lint errors and restore version to 0.3.0 (#4)
- Remove unused imports: `Any` and `DEFAULT_MODELS` from core.py, `sys` from __main__.py - Remove unused variable assignment in test_council.py - Restore version to 0.3.0 (reverted by erroneous semantic-release run) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d946ca3 commit cd54594

5 files changed

Lines changed: 4 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "consilium"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
description = "Multi-LLM council for consensus-driven AI responses"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/consilium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from consilium.model_registry import get_latest, list_models
2222
from consilium.sdk import council_query
2323

24-
__version__ = "0.1.0"
24+
__version__ = "0.3.0"
2525
__all__ = [
2626
"Council",
2727
"CouncilResult",

src/consilium/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
import argparse
1515
import json
16-
import sys
1716
import textwrap
1817

1918
from consilium.core import Council

src/consilium/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@
1212
import dataclasses
1313
import string
1414
import time
15-
from typing import Any, Dict, List
15+
from typing import Dict, List
1616

1717
from consilium.cost import CostTracker, TokenUsage
1818
from consilium.providers import (
1919
DEFAULT_CHAIRMAN,
20-
DEFAULT_MODELS,
2120
ProviderConfig,
2221
get_default_models,
2322
parse_model_string,

tests/test_council.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def capture_images(
314314
models=sample_configs[:1], chairman=sample_configs[0]
315315
)
316316
fake_image = b"\x89PNG\r\n\x1a\n" + b"\x00" * 100
317-
result = council.ask(
317+
council.ask(
318318
"Describe this", images=[fake_image], skip_review=True
319319
)
320320

0 commit comments

Comments
 (0)