Skip to content

Commit

Permalink
API word renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Mar 21, 2020
1 parent b5738cf commit 773c8af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/appier_extras/parts/loggly/handler.py
Expand Up @@ -61,7 +61,7 @@ def __init__(
self._schedule(timeout = timeout)

def emit(self, record):
# verifies if the api structure is defined and set and if
# verifies if the API structure is defined and set and if
# that's not the case returns immediately
if not self.api: return

Expand Down Expand Up @@ -97,7 +97,7 @@ def emit(self, record):
def flush(self, force = False):
logging.Handler.flush(self)

# verifies if the api structure is defined and set and if
# verifies if the API structure is defined and set and if
# that's not the case returns immediately
if not self.api: return

Expand Down
4 changes: 2 additions & 2 deletions src/appier_extras/parts/logstash/handler.py
Expand Up @@ -61,7 +61,7 @@ def __init__(
self._schedule(timeout = timeout)

def emit(self, record):
# verifies if the api structure is defined and set and if
# verifies if the API structure is defined and set and if
# that's not the case returns immediately
if not self.api: return

Expand Down Expand Up @@ -97,7 +97,7 @@ def emit(self, record):
def flush(self, force = False):
logging.Handler.flush(self)

# verifies if the api structure is defined and set and if
# verifies if the API structure is defined and set and if
# that's not the case returns immediately
if not self.api: return

Expand Down
4 changes: 2 additions & 2 deletions src/appier_extras/parts/sematext/handler.py
Expand Up @@ -61,7 +61,7 @@ def __init__(
self._schedule(timeout = timeout)

def emit(self, record):
# verifies if the api structure is defined and set and if
# verifies if the API structure is defined and set and if
# that's not the case returns immediately
if not self.api: return

Expand Down Expand Up @@ -97,7 +97,7 @@ def emit(self, record):
def flush(self, force = False):
logging.Handler.flush(self)

# verifies if the api structure is defined and set and if
# verifies if the API structure is defined and set and if
# that's not the case returns immediately
if not self.api: return

Expand Down

0 comments on commit 773c8af

Please sign in to comment.