Private
Public Access
1
0
This commit is contained in:
2025-01-27 21:10:07 +01:00
parent 3d43a10b98
commit a72ead8672
4 changed files with 4 additions and 1 deletions

View File

@@ -1732,6 +1732,8 @@ def read_data(columns, ids=[], doclean=True, workstrokesonly=True, debug=False,
try:
datadf = pl.concat(data)
except ShapeError:
return pl.DataFrame()
except SchemaError:
try:
data = [

View File

@@ -123,7 +123,7 @@ def create_contact(rower):
data = {
'City': rower.city,
'CompanyName': rower.user.first_name+" "+rower.user.last_name,
'CountryId': get_country_id(rower.country.code),
'CountryId': get_country_id(rower.country),
'Email': rower.user.email,
'Firstname': rower.user.first_name,
'PostalCode': rower.postal_code,

Binary file not shown.

View File

@@ -0,0 +1 @@
sander@rowsandall-2.17364:1733469196