Skip to content

Commit

Permalink
Initial work at integrating typing information. Details in #358 . Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0nx authored and tobixen committed Dec 18, 2023
1 parent 2ec62cf commit 722e9c0
Show file tree
Hide file tree
Showing 17 changed files with 687 additions and 334 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

This project should more or less adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [x.x.x] - unreleased

* Initial work at integrating typing information. Details in https://github.com/python-caldav/caldav/pull/358

## [1.3.9] - 2023-12-12

Some bugfixes.
Expand Down
2 changes: 1 addition & 1 deletion caldav/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


class NullHandler(logging.Handler):
def emit(self, record):
def emit(self, record) -> None:
pass


Expand Down
Loading

0 comments on commit 722e9c0

Please sign in to comment.