Fix in methods walk

This commit is contained in:
el Mau 2022-09-13 23:16:10 -05:00
parent cb34e7847b
commit 0404a99097
3 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from .easydocs import LODocuments
def __getattr__(name):
print(name)
classes = {
'active': LODocuments().active,
'active_sheet': LODocuments().active.active,
@ -14,7 +15,6 @@ def __getattr__(name):
'cmd': LOMain.commands,
'color': Color(),
'config': Config,
'current_region': LODocuments().active.selection.current_region,
'dates': Dates,
'dialog': LODialog,
'dispatch': LOMain.dispatch,

View File

@ -666,6 +666,7 @@ class LOCalc(LODocument):
sel = None
selection = self.obj.CurrentSelection
type_obj = selection.ImplementationName
if type_obj in self.TYPE_RANGES:
sel = LOCalcRange(selection)
elif type_obj == self.RANGES:

View File

@ -5,6 +5,8 @@ import getpass
import logging
import os
import platform
import re
import shutil
import sys
import threading