Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcdonald3 committed Jul 5, 2023
1 parent 4d3a334 commit 6706bd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arkouda/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,8 @@ def transfer(self, hostname, port):
msg_list = []
for col in self._columns:
if isinstance(self[col], Categorical):
msg_list.append(f"Categorical+{col}+{self[col].codes.name}+{self[col].categories.name}+{self[col]._akNAcode.name}")
msg_list.append(f"Categorical+{col}+{self[col].codes.name} \
+{self[col].categories.name}+{self[col]._akNAcode.name}")
elif isinstance(self[col], SegArray):
msg_list.append(f"SegArray+{col}+{self[col].segments.name}+{self[col].values.name}")
elif isinstance(self[col], Strings):
Expand Down

0 comments on commit 6706bd5

Please sign in to comment.