Skip to content

Commit c6e0dad

Browse files
authored
syntax, comments and black formating
1 parent d79f772 commit c6e0dad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyrevitlib/pyrevit/output/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ def reset_stylesheet():
9393
class PyRevitOutputWindow(object):
9494
"""Wrapper to interact with the output window."""
9595

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
9898

9999
@property
100100
def window(self):
@@ -686,7 +686,7 @@ def print_table(self,
686686

687687
# Get a unique ID for each table from _table_counter
688688
# This is used in HTML tags to define CSS classes for formatting per table
689-
self._table_counter+=1
689+
self._table_counter += 1
690690
table_uid = self._table_counter
691691

692692
# Validate input arguments should be lists:

0 commit comments

Comments
 (0)