Skip to content

Commit 27ac28e

Browse files
committed
Fixing indentation per project coding standards.
1 parent 6bc5f5e commit 27ac28e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

meshtastic/mesh_interface.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,13 @@ def getNestedValue(node_dict: Dict[str, Any], key_path: str) -> Any:
294294

295295
if showFields is None or len(showFields) == 0:
296296
# The default set of fields to show (e.g., the status quo)
297-
showFields = ["N", "user.longName", "user.id", "user.shortName", "user.hwModel", "user.publicKey",
298-
"user.role", "position.latitude", "position.longitude", "position.altitude",
299-
"deviceMetrics.batteryLevel", "deviceMetrics.channelUtilization",
300-
"deviceMetrics.airUtilTx", "snr", "hopsAway", "channel", "lastHeard", "since"]
297+
showFields = ["N", "user.longName", "user.id", "user.shortName", "user.hwModel", "user.publicKey",
298+
"user.role", "position.latitude", "position.longitude", "position.altitude",
299+
"deviceMetrics.batteryLevel", "deviceMetrics.channelUtilization",
300+
"deviceMetrics.airUtilTx", "snr", "hopsAway", "channel", "lastHeard", "since"]
301301
else:
302-
# Always at least include the row number.
303-
showFields.insert(0, "N")
302+
# Always at least include the row number.
303+
showFields.insert(0, "N")
304304

305305
rows: List[Dict[str, Any]] = []
306306
if self.nodesByNum:

0 commit comments

Comments
 (0)