Skip to content

Commit

Permalink
Added spaces to inline comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderguy-F committed Mar 27, 2024
1 parent 22cfd87 commit 600856f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/io_hubs_addon/components/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def find_active_undo_step_index(undo_steps):

@persistent
def undo_stack_handler(dummy, depsgraph):
return #this fails on windows, sys.stdout.fileno() is not supported
return # this fails on windows, sys.stdout.fileno() is not supported
global previous_undo_steps_dump
global previous_undo_step_index
global file_loading
Expand Down
2 changes: 1 addition & 1 deletion addons/io_hubs_addon/components/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def c_fflush():

@contextmanager
def redirect_c_stdout(binary_stream):
#this causes an error on windows when the addon is enabled using: bpy.ops.preferences.addon_enable(module="io_hubs_addon")
# this causes an error on windows when the addon is enabled using: bpy.ops.preferences.addon_enable(module="io_hubs_addon")
stdout_file_descriptor = sys.stdout.fileno()
original_stdout_file_descriptor_copy = os.dup(stdout_file_descriptor)
try:
Expand Down

0 comments on commit 600856f

Please sign in to comment.