Skip to content

Commit

Permalink
fix: rename remaining occurrences of raspberry_pi_helper to `device…
Browse files Browse the repository at this point in the history
…_helper`
  • Loading branch information
nicomiguelino committed Oct 7, 2024
1 parent cde5288 commit 9539170
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anthias_app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)
from lib import (
diagnostics,
raspberry_pi_helper,
device_helper,
)
from lib.auth import authorized
from lib.utils import (
Expand Down Expand Up @@ -205,7 +205,7 @@ def system_info():
# Player name for title
player_name = settings['player_name']

device_model = raspberry_pi_helper.parse_cpu_info().get('model')
device_model = device_helper.parse_cpu_info().get('model')

if device_model is None and machine() == 'x86_64':
device_model = 'Generic x86_64 Device'
Expand Down

0 comments on commit 9539170

Please sign in to comment.