Merge pull request #3771 from jaborsh/syntax_fixes
Resolving SyntaxWarnings for Py 3.13
This commit is contained in:
commit
c889cf66ff
3 changed files with 8 additions and 8 deletions
|
|
@ -206,7 +206,7 @@ class HelpEntry(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_detail_url(self):
|
def web_get_detail_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to view details for
|
Returns the URI path for a View that allows users to view details for
|
||||||
this object.
|
this object.
|
||||||
|
|
||||||
|
|
@ -242,7 +242,7 @@ class HelpEntry(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_update_url(self):
|
def web_get_update_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to update this
|
Returns the URI path for a View that allows users to update this
|
||||||
object.
|
object.
|
||||||
|
|
||||||
|
|
@ -278,7 +278,7 @@ class HelpEntry(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_delete_url(self):
|
def web_get_delete_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to delete this object.
|
Returns the URI path for a View that allows users to delete this object.
|
||||||
|
|
||||||
ex. Oscar (Character) = '/characters/oscar/1/delete/'
|
ex. Oscar (Character) = '/characters/oscar/1/delete/'
|
||||||
|
|
|
||||||
|
|
@ -1471,7 +1471,7 @@ class DbHolder:
|
||||||
# Nick templating
|
# Nick templating
|
||||||
#
|
#
|
||||||
|
|
||||||
"""
|
r"""
|
||||||
This supports the use of replacement templates in nicks:
|
This supports the use of replacement templates in nicks:
|
||||||
|
|
||||||
This happens in two steps:
|
This happens in two steps:
|
||||||
|
|
|
||||||
|
|
@ -948,7 +948,7 @@ class TypedObject(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_detail_url(self):
|
def web_get_detail_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to view details for
|
Returns the URI path for a View that allows users to view details for
|
||||||
this object.
|
this object.
|
||||||
|
|
||||||
|
|
@ -988,7 +988,7 @@ class TypedObject(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_puppet_url(self):
|
def web_get_puppet_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to puppet a specific
|
Returns the URI path for a View that allows users to puppet a specific
|
||||||
object.
|
object.
|
||||||
|
|
||||||
|
|
@ -1026,7 +1026,7 @@ class TypedObject(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_update_url(self):
|
def web_get_update_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to update this
|
Returns the URI path for a View that allows users to update this
|
||||||
object.
|
object.
|
||||||
|
|
||||||
|
|
@ -1065,7 +1065,7 @@ class TypedObject(SharedMemoryModel):
|
||||||
return "#"
|
return "#"
|
||||||
|
|
||||||
def web_get_delete_url(self):
|
def web_get_delete_url(self):
|
||||||
"""
|
r"""
|
||||||
Returns the URI path for a View that allows users to delete this object.
|
Returns the URI path for a View that allows users to delete this object.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue