Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 3.0.4 (2025-05-06)

### Changed

- Updated dependencies

## 3.0.3 (2024-07-16)

### Added
Expand Down
2 changes: 1 addition & 1 deletion deduce/annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _get_chained_token(

return token

def _match_sequence( # pylint: disable=R0913
def _match_sequence( # pylint: disable=R0913, R0917
self,
text: str,
pattern: list[dict],
Expand Down
2 changes: 1 addition & 1 deletion deduce/deduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Deduce(dd.DocDeid): # pylint: disable=R0903
using the cache when this is set to `True`.
"""

def __init__( # pylint: disable=R0913
def __init__( # pylint: disable=R0913, R0917
self,
load_base_config: bool = True,
config: Optional[Union[str, dict]] = None,
Expand Down
2 changes: 1 addition & 1 deletion deduce/lookup_structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def cache_lookup_structs(
pickle.dump(cache, file)


def get_lookup_structs( # pylint: disable=R0913
def get_lookup_structs( # pylint: disable=R0913, R0917
lookup_path: Path,
cache_path: Path,
tokenizer: Tokenizer,
Expand Down
Loading