Skip to content

Commit

Permalink
Merge pull request #671 from c0d33ngr/add-all-attribute
Browse files Browse the repository at this point in the history
Add __all__ attributes to icalendar modules
  • Loading branch information
niccokunzmann committed Jun 30, 2024
2 parents 644e477 + 318af90 commit 1996b0b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Minor changes:
- Rename ``master`` branch to ``main``, see `Issue
<https://github.com/collective/icalendar/issues/627>`_
- Added missing public classes and functions to API documentation.
- Improved namespace management in the ``icalendar`` directory.
- Add Python version badge and badge for test coverage
- Remove 4.x badge
- Update list of ``tox`` environments
Expand Down
1 change: 1 addition & 0 deletions docs/credits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ icalendar contributors
- Felix Stupp <felix.stupp@banananet.work>
- Bastian Wegge <wegge@crossbow.de>
- `Steve Piercy <https://github.com/stevepiercy>`_
- Jeffrey Whewhetu <jeffwhewhetu@gmail.com>

Find out who contributed::

Expand Down
6 changes: 6 additions & 0 deletions src/icalendar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@

# Switching the timezone provider
from icalendar.timezone import use_pytz, use_zoneinfo


__all__ = ['Calendar', 'Event', 'Todo', 'Journal', 'Timezone', 'TimezoneStandard', 'TimezoneDaylight', 'FreeBusy', 'Alarm',
'ComponentFactory', 'vBinary', 'vBoolean', 'vCalAddress', 'vDatetime', 'vDate', 'vDDDTypes', 'vDuration',
'vFloat', 'vInt', 'vPeriod','vWeekday', 'vFrequency', 'vRecur', 'vText', 'vTime', 'vUri', 'vGeo', 'vUTCOffset',
'vTypesFactory', 'Parameters', 'q_split', 'q_join', 'use_pytz', 'use_zoneinfo']

0 comments on commit 1996b0b

Please sign in to comment.