File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
pyrevitlib/pyrevit/output Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ def reset_stylesheet():
93
93
class PyRevitOutputWindow (object ):
94
94
"""Wrapper to interact with the output window."""
95
95
96
- def __init__ (self ): # Mutable instance variable, which is incremented each time you print a table.
97
- self ._table_counter = 0 # initialize the counter
96
+ def __init__ (self ):
97
+ self ._table_counter = 0
98
98
99
99
@property
100
100
def window (self ):
@@ -686,7 +686,7 @@ def print_table(self,
686
686
687
687
# Get a unique ID for each table from _table_counter
688
688
# This is used in HTML tags to define CSS classes for formatting per table
689
- self ._table_counter += 1
689
+ self ._table_counter += 1
690
690
table_uid = self ._table_counter
691
691
692
692
# Validate input arguments should be lists:
You can’t perform that action at this time.
0 commit comments