Skip to content

Commit

Permalink
Merge pull request #11 from Everlaw/fix/stubs
Browse files Browse the repository at this point in the history
Fix stubs
  • Loading branch information
kmurphy4 authored Dec 5, 2024
2 parents ae1631c + 22159c7 commit c4a027f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion stubs/pypff-stubs/item.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class item:
Retrieves the number of sub items.
"""

def get_receipients(self) -> item:
def get_recipients(self) -> item:
"""
Loads Recipients.
Expand All @@ -89,3 +89,7 @@ class item:
"""
Retrieves a specific attachment
"""

def get_embedded_attachment(self, attachment_index: int) -> attachment: ...
def get_size(self) -> int: ...
def read_buffer(self, n: int) -> bytes: ...
2 changes: 1 addition & 1 deletion stubs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ build-backend = "setuptools.build_meta"
name = "pypff-stubs"
# The major version should match the version in `configure.ac`'s `AC_INIT`
# with the minor version incremented as needed for new changes.
version = "20240608.0"
version = "20240608.1"
requires-python = ">=3.9"

0 comments on commit c4a027f

Please sign in to comment.