Skip to content

Commit 256be0d

Browse files
committed
Fix linting issues regarding missing return statement
1 parent c9847f1 commit 256be0d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mlstacks/analytics/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ def track_event(
176176
)
177177
except Exception:
178178
logger.exception("Error occurred during analytics tracking")
179-
return False
179+
180+
return False
180181

181182

182183
class EventHandler:

0 commit comments

Comments
 (0)