Add comment

This commit is contained in:
Nicola Benaglia 2025-05-20 09:14:10 +02:00
parent 3382982465
commit bd1a7b5a5a
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,8 @@ def is_excluded(path):
def is_ignorable(text): def is_ignorable(text):
return ( return (
re.fullmatch(r'[A-Z0-9_]+', text) and 'action' in text re.fullmatch(r'[A-Z0-9_]+', text) and
any(keyword in text.lower() for keyword in ['action', 'status'])
) )
def is_console_log_line(line): def is_console_log_line(line):

View File

@ -165,7 +165,7 @@ export function openIndexedDB() {
reject('Error opening IndexedDB'); reject('Error opening IndexedDB');
}; };
}); });
} } // TODO translate
export const listOfAllQortalRequests = [ export const listOfAllQortalRequests = [
'ADD_FOREIGN_SERVER', 'ADD_FOREIGN_SERVER',