mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-06-09 04:09:54 +02:00
pep8: class names should use CapWords
This commit is contained in:
parent
62e8d78e73
commit
3f1e140da1
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
import sys
|
||||
import click
|
||||
from ocrd_utils import initLogging, setOverrideLogLevel
|
||||
from eynollah.eynollah import Eynollah, Eynollah_ocr
|
||||
from eynollah.eynollah import Eynollah, EynollahOcr
|
||||
from eynollah.sbb_binarize import SbbBinarizer
|
||||
|
||||
|
||||
|
@ -372,7 +372,7 @@ def ocr(dir_in, out, dir_xmls, model, tr_ocr, export_textline_images_and_text, d
|
|||
if log_level:
|
||||
setOverrideLogLevel(log_level)
|
||||
initLogging()
|
||||
eynollah_ocr = Eynollah_ocr(
|
||||
eynollahOcr = EynollahOcr(
|
||||
dir_xmls=dir_xmls,
|
||||
dir_in=dir_in,
|
||||
dir_out=out,
|
||||
|
@ -381,7 +381,7 @@ def ocr(dir_in, out, dir_xmls, model, tr_ocr, export_textline_images_and_text, d
|
|||
export_textline_images_and_text=export_textline_images_and_text,
|
||||
do_not_mask_with_textline_contour=do_not_mask_with_textline_contour,
|
||||
)
|
||||
eynollah_ocr.run()
|
||||
eynollahOcr.run()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
@ -4982,7 +4982,7 @@ class Eynollah:
|
|||
print("all Job done in %.1fs", time.time() - t0_tot)
|
||||
|
||||
|
||||
class Eynollah_ocr:
|
||||
class EynollahOcr:
|
||||
def __init__(
|
||||
self,
|
||||
dir_models,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue