fix: 포트 충돌 회피 — note_bridge 8098, intent_service 8099
Jellyfin(8096), OrbStack(8097) 포트 충돌으로 변경. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
67
.venv/lib/python3.9/site-packages/icalendar/error.py
Normal file
67
.venv/lib/python3.9/site-packages/icalendar/error.py
Normal file
@@ -0,0 +1,67 @@
|
||||
"""Errors thrown by icalendar."""
|
||||
|
||||
|
||||
class InvalidCalendar(ValueError):
|
||||
"""The calendar given is not valid.
|
||||
|
||||
This calendar does not conform with RFC 5545 or breaks other RFCs.
|
||||
"""
|
||||
|
||||
|
||||
class IncompleteComponent(ValueError):
|
||||
"""The component is missing attributes.
|
||||
|
||||
The attributes are not required, otherwise this would be
|
||||
an InvalidCalendar. But in order to perform calculations,
|
||||
this attribute is required.
|
||||
|
||||
This error is not raised in the UPPERCASE properties like .DTSTART,
|
||||
only in the lowercase computations like .start.
|
||||
"""
|
||||
|
||||
|
||||
class IncompleteAlarmInformation(ValueError):
|
||||
"""The alarms cannot be calculated yet because information is missing."""
|
||||
|
||||
|
||||
class LocalTimezoneMissing(IncompleteAlarmInformation):
|
||||
"""We are missing the local timezone to compute the value.
|
||||
|
||||
Use Alarms.set_local_timezone().
|
||||
"""
|
||||
|
||||
|
||||
class ComponentEndMissing(IncompleteAlarmInformation):
|
||||
"""We are missing the end of a component that the alarm is for.
|
||||
|
||||
Use Alarms.set_end().
|
||||
"""
|
||||
|
||||
|
||||
class ComponentStartMissing(IncompleteAlarmInformation):
|
||||
"""We are missing the start of a component that the alarm is for.
|
||||
|
||||
Use Alarms.set_start().
|
||||
"""
|
||||
|
||||
class FeatureWillBeRemovedInFutureVersion(DeprecationWarning):
|
||||
"""This feature will be removed in a future version."""
|
||||
|
||||
|
||||
class WillBeRemovedInVersion7(FeatureWillBeRemovedInFutureVersion):
|
||||
"""This feature will be removed in icalendar version 7.
|
||||
|
||||
Suppress FeatureWillBeRemovedInFutureVersion instead.
|
||||
"""
|
||||
|
||||
__all__ = [
|
||||
"InvalidCalendar",
|
||||
"IncompleteComponent",
|
||||
"IncompleteAlarmInformation",
|
||||
"LocalTimezoneMissing",
|
||||
"ComponentEndMissing",
|
||||
|
||||
"ComponentStartMissing",
|
||||
"FeatureWillBeRemovedInFutureVersion",
|
||||
"WillBeRemovedInVersion7",
|
||||
]
|
||||
Reference in New Issue
Block a user