updating data

This commit is contained in:
frankknoll
2022-03-07 13:13:13 +01:00
parent 90c6b9632d
commit 4edb319335
387 changed files with 393 additions and 387 deletions

View File

@@ -27,7 +27,13 @@
"from dateutil.parser import parse\n",
"\n",
"def needsUpdate():\n",
" return _getLastUpdatedBatchCodeTable() < _getLastUpdatedOriginal()\n",
" lastUpdatedBatchCodeTable = _getLastUpdatedBatchCodeTable()\n",
" print('lastUpdatedBatchCodeTable:', lastUpdatedBatchCodeTable)\n",
"\n",
" lastUpdatedOriginal = _getLastUpdatedOriginal()\n",
" print('lastUpdatedOriginal:', lastUpdatedOriginal)\n",
"\n",
" return lastUpdatedBatchCodeTable < lastUpdatedOriginal\n",
" \n",
"def _getLastUpdatedBatchCodeTable():\n",
" return _getLastUpdated(\n",