Skip to content

Commit a866b56

Browse files
authored
Fix wrong error messages. (microsoft#946)
1 parent df70f53 commit a866b56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/data_collector/base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,17 +339,17 @@ def __init__(self, source_dir=None, normalize_dir=None, max_workers=1, interval=
339339
@property
340340
@abc.abstractmethod
341341
def collector_class_name(self):
342-
raise NotImplementedError("rewrite normalize_symbol")
342+
raise NotImplementedError("rewrite collector_class_name")
343343

344344
@property
345345
@abc.abstractmethod
346346
def normalize_class_name(self):
347-
raise NotImplementedError("rewrite normalize_symbol")
347+
raise NotImplementedError("rewrite normalize_class_name")
348348

349349
@property
350350
@abc.abstractmethod
351351
def default_base_dir(self) -> [Path, str]:
352-
raise NotImplementedError("rewrite normalize_symbol")
352+
raise NotImplementedError("rewrite default_base_dir")
353353

354354
def download_data(
355355
self,

0 commit comments

Comments
 (0)