Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Commits
8c0200dd
Commit
8c0200dd
authored
5 years ago
by
Renze
Browse files
Options
Downloads
Patches
Plain Diff
Making the code style checker happy
parent
f26bcbaf
No related branches found
No related tags found
1 merge request
!138
Hatchery support
Pipeline
#2510
failed
5 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
preload/menu.py
+15
-10
15 additions, 10 deletions
preload/menu.py
with
15 additions
and
10 deletions
preload/menu.py
+
15
−
10
View file @
8c0200dd
...
...
@@ -5,17 +5,22 @@ You can customize this script however you want :) If you want to go back to
the default version, just delete this file; the firmware will recreate it on
next run.
"""
import
buttons
,
color
,
display
,
os
,
ujson
,
sys
import
buttons
import
color
import
display
import
os
import
ujson
import
sys
def
read_metadata
(
app_folder
):
try
:
info_file
=
"
/apps/%s/metadata.json
"
%
(
app_folder
)
with
open
(
info_file
)
as
f
:
information
=
f
.
read
()
return
ujson
.
loads
(
information
)
except
BaseException
as
e
:
sys
.
print_exception
(
e
)
return
{
'
author
'
:
''
,
'
name
'
:
app_folder
,
'
description
'
:
''
,
'
category
'
:
''
,
'
revision
'
:
0
}
try
:
info_file
=
"
/apps/%s/metadata.json
"
%
(
app_folder
)
with
open
(
info_file
)
as
f
:
information
=
f
.
read
()
return
ujson
.
loads
(
information
)
except
BaseException
as
e
:
sys
.
print_exception
(
e
)
return
{
'
author
'
:
''
,
'
name
'
:
app_folder
,
'
description
'
:
''
,
'
category
'
:
''
,
'
revision
'
:
0
}
def
list_apps
():
"""
Create a list of available apps.
"""
...
...
@@ -23,7 +28,7 @@ def list_apps():
apps
=
[]
for
appFolder
in
appFolders
:
apps
.
append
([
appFolder
,
read_metadata
(
appFolder
)])
apps
.
append
([
appFolder
,
read_metadata
(
appFolder
)])
return
apps
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment