Skip to content

Commit b34b74b

Browse files
committed
fix test
1 parent 9dfbaef commit b34b74b

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

tests/data/package_init/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(DataPackageBaseClass):
1010

1111
def __init__(self, *, data_operation: 'colrev.ops.data.Data', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def get_advice(self) -> 'dict':
1515
"""Get advice on how to operate the data package endpoint."""

tests/data/package_init/dedupe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(DedupePackageBaseClass):
1010

1111
def __init__(self, *, dedupe_operation: 'colrev.ops.dedupe.Dedupe', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False):
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def run_dedupe(self) -> 'None':
1515
"""Run the dedupe operation."""

tests/data/package_init/pdf_get.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PDFGetPackageBaseClass):
1010

1111
def __init__(self, *, pdf_get_operation: 'colrev.ops.pdf_get.PDFGet', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def get_pdf(self, record: 'colrev.record.record.Record') -> 'colrev.record.record.Record':
1515
"""Run the pdf-get operation."""

tests/data/package_init/pdf_get_man.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PDFGetManPackageBaseClass):
1010

1111
def __init__(self, *, pdf_get_man_operation: 'colrev.ops.pdf_get_man.PDFGetMan', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def pdf_get_man(self, records: 'dict') -> 'dict':
1515
"""Run the pdf-get-man operation."""

tests/data/package_init/pdf_prep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PDFPrepPackageBaseClass):
1010

1111
def __init__(self, *, pdf_prep_operation: 'colrev.ops.pdf_prep.PDFPrep', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def prep_pdf(self, record: 'colrev.record.record_pdf.PDFRecord', pad: 'int') -> 'colrev.record.record.Record':
1515
"""Run the prep-pdf operation."""

tests/data/package_init/pdf_prep_man.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PDFPrepManPackageBaseClass):
1010

1111
def __init__(self, *, pdf_prep_man_operation: 'colrev.ops.pdf_prep_man.PDFPrepMan', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def pdf_prep_man(self, records: 'dict') -> 'dict':
1515
"""Run the pdf-prep-man operation."""

tests/data/package_init/prep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PrepPackageBaseClass):
1010

1111
def __init__(self, *, prep_operation: 'colrev.ops.prep.Prep', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def prepare(self, record: 'colrev.record.record_prep.PrepRecord') -> 'colrev.record.record.Record':
1515
"""Run the prep operation."""

tests/data/package_init/prep_man.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PrepManPackageBaseClass):
1010

1111
def __init__(self, *, prep_man_operation: 'colrev.ops.prep_man.PrepMan', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def prepare_manual(self, records: 'dict') -> 'dict':
1515
"""Run the prep-man operation."""

tests/data/package_init/prescreen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(PrescreenPackageBaseClass):
1010

1111
def __init__(self, *, prescreen_operation: 'colrev.ops.prescreen.Prescreen', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def run_prescreen(self, records: 'dict', split: 'list') -> 'dict':
1515
"""Run the prescreen operation."""

tests/data/package_init/review_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomName(ReviewTypePackageBaseClass):
1010

1111
def __init__(self, *, operation: 'colrev.process.operation.Operation', settings: 'dict', logger: 'typing.Optional[logging.Logger]' = None, verbose_mode: 'bool' = False) -> 'None':
12-
"""Initialize self. See help(type(self)) for accurate signature."""
12+
"""Initialize the instance."""
1313

1414
def initialize(self, settings: 'colrev.settings.Settings') -> 'dict':
1515
"""Initialize the review type."""

0 commit comments

Comments
 (0)