Skip to content

Commit

Permalink
dataflash_logger: make module public
Browse files Browse the repository at this point in the history
This will make the module accessible from other modules with the module('name').
  • Loading branch information
magate authored Nov 2, 2024
1 parent b7d20f7 commit 43d3292
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MAVProxy/modules/mavproxy_dataflash_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def __init__(self, mpstate):
super(dataflash_logger, self).__init__(
mpstate,
"dataflash_logger",
"logging of mavlink dataflash messages"
"logging of mavlink dataflash messages",
public = True
)
self.sender = None
self.stopped = False
Expand Down

0 comments on commit 43d3292

Please sign in to comment.