App: Remove dead None check in __read_dep_graph()
get_project_refs() always returns a list[str], never None. The `if deps is None: continue` check in __read_dep_graph() is dead code, remove it.
Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL and pi.devSigned-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
83d6f4b2df
commit
a61a55c696
1 changed files with 0 additions and 2 deletions
|
|
@ -272,8 +272,6 @@ class App(Base):
|
||||||
add_self = False,
|
add_self = False,
|
||||||
names_only = True,
|
names_only = True,
|
||||||
)
|
)
|
||||||
if deps is None:
|
|
||||||
continue
|
|
||||||
graph[project] = set(deps)
|
graph[project] = set(deps)
|
||||||
for dep in deps:
|
for dep in deps:
|
||||||
self.__read_dep_graph([dep], sections, graph)
|
self.__read_dep_graph([dep], sections, graph)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue