Just some grammar tweaks

This commit is contained in:
Roy Nieterau 2023-03-30 13:59:22 +02:00
parent 2b540f1b2e
commit 3fae1f8521
150 changed files with 412 additions and 412 deletions

View file

@ -148,7 +148,7 @@ def get_main_window():
def set_node_data(node, knobname, data):
"""Write data to node invisible knob
Will create new in case it doesnt exists
Will create new in case it doesn't exists
or update the one already created.
Args:
@ -506,7 +506,7 @@ def get_avalon_knob_data(node, prefix="avalon:", create=True):
try:
# check if data available on the node
test = node[AVALON_DATA_GROUP].value()
log.debug("Only testing if data avalable: `{}`".format(test))
log.debug("Only testing if data available: `{}`".format(test))
except NameError as e:
# if it doesn't then create it
log.debug("Creating avalon knob: `{}`".format(e))
@ -908,11 +908,11 @@ def get_view_process_node():
continue
if not ipn_node:
# in case a Viewer node is transfered from
# in case a Viewer node is transferred from
# different workfile with old values
raise NameError((
"Input process node name '{}' set in "
"Viewer '{}' is does't exists in nodes"
"Viewer '{}' is doesn't exists in nodes"
).format(ipn, v_.name()))
ipn_node.setSelected(True)
@ -1662,7 +1662,7 @@ def create_write_node_legacy(
tile_color = _data.get("tile_color", "0xff0000ff")
GN["tile_color"].setValue(tile_color)
# overrie knob values from settings
# override knob values from settings
for knob in knob_overrides:
knob_type = knob["type"]
knob_name = knob["name"]
@ -2117,7 +2117,7 @@ class WorkfileSettings(object):
write_node[knob["name"]].setValue(value)
except TypeError:
log.warning(
"Legacy workflow didnt work, switching to current")
"Legacy workflow didn't work, switching to current")
set_node_knobs_from_settings(
write_node, nuke_imageio_writes["knobs"])
@ -2543,7 +2543,7 @@ def reset_selection():
def select_nodes(nodes):
"""Selects all inputed nodes
"""Selects all inputted nodes
Arguments:
nodes (list): nuke nodes to be selected
@ -2560,7 +2560,7 @@ def launch_workfiles_app():
Trigger to show workfiles tool on application launch. Can be executed only
once all other calls are ignored.
Workfiles tool show is deffered after application initialization using
Workfiles tool show is deferred after application initialization using
QTimer.
"""
@ -2581,7 +2581,7 @@ def launch_workfiles_app():
# Show workfiles tool using timer
# - this will be probably triggered during initialization in that case
# the application is not be able to show uis so it must be
# deffered using timer
# deferred using timer
# - timer should be processed when initialization ends
# When applications starts to process events.
timer = QtCore.QTimer()

View file

@ -594,7 +594,7 @@ class ExporterReview(object):
Defaults to None.
range (bool, optional): flag for adding ranges.
Defaults to False.
custom_tags (list[str], optional): user inputed custom tags.
custom_tags (list[str], optional): user inputted custom tags.
Defaults to None.
"""
add_tags = tags or []
@ -1110,7 +1110,7 @@ class AbstractWriteRender(OpenPypeCreator):
def is_legacy(self):
"""Check if it needs to run legacy code
In case where `type` key is missing in singe
In case where `type` key is missing in single
knob it is legacy project anatomy.
Returns:

View file

@ -87,7 +87,7 @@ def bake_gizmos_recursively(in_group=None):
def colorspace_exists_on_node(node, colorspace_name):
""" Check if colorspace exists on node
Look through all options in the colorpsace knob, and see if we have an
Look through all options in the colorspace knob, and see if we have an
exact match to one of the items.
Args:

View file

@ -42,7 +42,7 @@ class NukeTemplateBuilder(AbstractTemplateBuilder):
get_template_preset implementation)
Returns:
bool: Wether the template was successfully imported or not
bool: Whether the template was successfully imported or not
"""
# TODO check if the template is already imported
@ -222,7 +222,7 @@ class NukePlaceholderLoadPlugin(NukePlaceholderPlugin, PlaceholderLoadMixin):
self._imprint_siblings(placeholder)
if placeholder.data["nb_children"] == 0:
# save initial nodes postions and dimensions, update them
# save initial nodes positions and dimensions, update them
# and set inputs and outputs of loaded nodes
self._imprint_inits()
@ -231,7 +231,7 @@ class NukePlaceholderLoadPlugin(NukePlaceholderPlugin, PlaceholderLoadMixin):
elif placeholder.data["siblings"]:
# create copies of placeholder siblings for the new loaded nodes,
# set their inputs and outpus and update all nodes positions and
# set their inputs and outputs and update all nodes positions and
# dimensions and siblings names
siblings = get_nodes_by_names(placeholder.data["siblings"])
@ -632,7 +632,7 @@ class NukePlaceholderCreatePlugin(
self._imprint_siblings(placeholder)
if placeholder.data["nb_children"] == 0:
# save initial nodes postions and dimensions, update them
# save initial nodes positions and dimensions, update them
# and set inputs and outputs of created nodes
self._imprint_inits()
@ -641,7 +641,7 @@ class NukePlaceholderCreatePlugin(
elif placeholder.data["siblings"]:
# create copies of placeholder siblings for the new created nodes,
# set their inputs and outpus and update all nodes positions and
# set their inputs and outputs and update all nodes positions and
# dimensions and siblings names
siblings = get_nodes_by_names(placeholder.data["siblings"])