Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
AndresOrtegaGuerrero committed Feb 20, 2025
1 parent 6ad95d6 commit 247969f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/aiidalab_qe/app/configuration/advanced/hubbard/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def update(self, specific=""): # noqa: ARG002
self.needs_eigenvalues_widget = len(self.applicable_kind_names) > 0

def get_active_eigenvalues(self):
print(self.eigenvalues)
if not (
active_eigenvalues := [
orbital_eigenvalue
Expand All @@ -78,7 +77,6 @@ def get_active_eigenvalues(self):
):
return []
eigenvalues_array = np.array(active_eigenvalues, dtype=object)
print(eigenvalues_array)
new_shape = (int(np.prod(eigenvalues_array.shape[:-1])), 4)
return [
tuple(eigenvalue)
Expand Down

0 comments on commit 247969f

Please sign in to comment.