Skip to content

Commit

Permalink
Merge pull request #204 from Forced-Alignment-and-Vowel-Extraction/dev
Browse files Browse the repository at this point in the history
v0.7.3
  • Loading branch information
JoFrhwld authored Jun 25, 2024
2 parents 6bbd88a + 34704c4 commit cf2997b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aligned_textgrid"
version = "0.7.3"
version = "0.7.4"
description = "Classes for defining sequential information from TextGrids"
authors = ["JoFrhwld <[email protected]>", "chrisbrickhouse <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion src/aligned_textgrid/aligned_textgrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def append(self, tier_group:TierGroup):
new_classes = self._swap_classes(tier_group.entry_classes, self._cloned_classes)
for cl, tier in zip(new_classes, tier_group):
entries = [cl._cast(i) for i in tier]
tier.__init__(entries)
tier.__init__(entries, entry_class = cl)

tier_group.__init__(tier_group)

Expand Down

0 comments on commit cf2997b

Please sign in to comment.