Skip to content

Commit

Permalink
Fix healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
KirylKovaliov committed Oct 24, 2024
1 parent 2357adf commit ea2085b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
from regula.documentreader.webclient import ProcessResponse
from regula.documentreader.webclient.gen import ApiClient
from regula.documentreader.webclient.ext.models.recognition_response import RecognitionResponse
from regula.documentreader.webclient.gen.api import DefaultApi, ProcessApi
from regula.documentreader.webclient.gen.api import HealthcheckApi, ProcessApi
from regula.documentreader.webclient.gen.configuration import Configuration
from regula.documentreader.webclient.gen.models import ProcessRequest

Base64String = str


class DocumentReaderApi(DefaultApi, ProcessApi):
class DocumentReaderApi(HealthcheckApi, ProcessApi):

def __init__(self, host=None, debug=False, verify_ssl=True, api_client=None):
if api_client:
Expand Down

0 comments on commit ea2085b

Please sign in to comment.