mirror of https://gitlab.com/bashrc2/epicyon
Don't need default argument values
parent
ccddb3c765
commit
09c3703ba4
24
posts.py
24
posts.py
|
@ -1066,18 +1066,18 @@ def _createPostBase(baseDir: str, nickname: str, domain: str, port: int,
|
||||||
mediaType: str, imageDescription: str, city: str,
|
mediaType: str, imageDescription: str, city: str,
|
||||||
isModerationReport: bool,
|
isModerationReport: bool,
|
||||||
isArticle: bool,
|
isArticle: bool,
|
||||||
inReplyTo: str = None,
|
inReplyTo: str,
|
||||||
inReplyToAtomUri: str = None,
|
inReplyToAtomUri: str,
|
||||||
subject: str = None, schedulePost: bool = False,
|
subject: str, schedulePost: bool,
|
||||||
eventDate: str = None, eventTime: str = None,
|
eventDate: str, eventTime: str,
|
||||||
location: str = None,
|
location: str,
|
||||||
eventUUID: str = None, category: str = None,
|
eventUUID: str, category: str,
|
||||||
joinMode: str = None,
|
joinMode: str,
|
||||||
endDate: str = None, endTime: str = None,
|
endDate: str, endTime: str,
|
||||||
maximumAttendeeCapacity: int = None,
|
maximumAttendeeCapacity: int,
|
||||||
repliesModerationOption: str = None,
|
repliesModerationOption: str,
|
||||||
anonymousParticipationEnabled: bool = None,
|
anonymousParticipationEnabled: bool,
|
||||||
eventStatus: str = None, ticketUrl: str = None) -> {}:
|
eventStatus: str, ticketUrl: str) -> {}:
|
||||||
"""Creates a message
|
"""Creates a message
|
||||||
"""
|
"""
|
||||||
content = removeInvalidChars(content)
|
content = removeInvalidChars(content)
|
||||||
|
|
Loading…
Reference in New Issue