Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 4117998

Browse files
committed
[SP-337] Replace null characters with empty string
1 parent ec701d6 commit 4117998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdl/data_sources/AWSLambdaDataSource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def __get_table_data(
142142

143143
def __get_data_frame(self, data: [[]], column_names: []):
144144
return pandas.DataFrame(data=data, columns=column_names).replace(
145-
r"\W+", "", regex=True
145+
regex=r"\x00", value=""
146146
)
147147

148148
def __invoke_lambda(self, pay_load):

0 commit comments

Comments
 (0)