Docstrings

This commit is contained in:
David Vierra 2016-06-17 22:58:06 -10:00
parent 120d12ccc5
commit bee69153b8

View File

@ -215,7 +215,7 @@ class WorldEditor(object):
:type filename: str or unknown or unicode :type filename: str or unknown or unicode
:type create: bool :type create: bool
:type readonly: bool :type readonly: bool
:type adapter: unknown or mceditlib.anvil.adapter.AnvilWorldAdapter or mceditlib.schematic.SchematicFileAdapter :type adapter: mceditlib.anvil.adapter.AnvilWorldAdapter or mceditlib.schematic.SchematicFileAdapter
:type adapterClass: class :type adapterClass: class
:type resume: None or bool :type resume: None or bool
:return: :return:
@ -445,7 +445,7 @@ class WorldEditor(object):
May initiate a costly chunk scan. May initiate a costly chunk scan.
:param dimName: Name of dimension :param dimName: Name of dimension
:type dimName: str :type dimName: unicode
:return: :return:
:rtype: :rtype:
""" """
@ -699,6 +699,13 @@ class WorldEditor(object):
class WorldEditorDimension(object): class WorldEditorDimension(object):
def __init__(self, worldEditor, dimName): def __init__(self, worldEditor, dimName):
"""
Parameters
----------
worldEditor : WorldEditor
dimName : unicode
"""
self.worldEditor = worldEditor self.worldEditor = worldEditor
self.adapter = worldEditor.adapter self.adapter = worldEditor.adapter
self.dimName = dimName self.dimName = dimName