(self, parent_window=None)
| 141 | """Check local CleanerML files as a security measure""" |
| 142 | |
| 143 | def __init__(self, parent_window=None): |
| 144 | self.parent_window = parent_window |
| 145 | try: |
| 146 | self.salt = options.get('hashsalt') |
| 147 | except bleachbit.NoOptionError: |
| 148 | self.salt = hashdigest(os.urandom(512)) |
| 149 | options.set('hashsalt', self.salt) |
| 150 | self.__scan() |
| 151 | |
| 152 | def __recognized(self, pathname): |
| 153 | """Is pathname recognized?""" |
nothing calls this directly
no test coverage detected