13 lines
293 B
Python
13 lines
293 B
Python
class RowStorage:
|
|
def __init__(self):
|
|
self.data = {}
|
|
|
|
def get_row(self, row_num):
|
|
return self.data.get(row_num, {})
|
|
|
|
def set_row(self, row_num, row_data):
|
|
self.data[row_num] = row_data
|
|
|
|
|
|
row_storage = RowStorage() # Singleton instance for storing row data
|