Skip to content

Commit f117cea

Browse files
committed
short dict
1 parent ee07a4f commit f117cea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pycona/metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def print_short_statistics(self):
252252
results_df = pd.DataFrame([self.metrics_short_dict])
253253
print(results_df.to_string(index=False))
254254
except ImportError:
255-
print(self.metrics_dict)
255+
print(self.metrics_short_dict)
256256

257257
@property
258258
def short_statistics(self):
@@ -264,7 +264,7 @@ def short_statistics(self):
264264
results_df = pd.DataFrame([self.metrics_short_dict])
265265
return results_df
266266
except ImportError:
267-
return self.metrics_dict
267+
return self.metrics_short_dict
268268

269269
def write_to_file(self, filename):
270270
"""

0 commit comments

Comments
 (0)