Skip to content

Commit bad1bdc

Browse files
committed
Minor fix for mypy check under Python 3.9
1 parent e6010cb commit bad1bdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

treecript/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def metrics_parser(
211211
pids["command"] = main_commands
212212
pids["command_label"] = command_labels
213213
pids["full_command"] = full_command
214-
pids["full_stats"] = pd.array(full_stats, dtype=object, copy=False)
214+
pids["full_stats"] = pd.array(full_stats, dtype="object", copy=False)
215215
pids["subtree_root"] = subtree_root
216216

217217
return pids, num_cpu_cores, sampling_period_seconds

0 commit comments

Comments
 (0)