Skip to content

Commit

Permalink
remove unnecessary static=True annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
pfackeldey committed Apr 24, 2024
1 parent 3de4a46 commit 08ea013
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/evermore/staterror.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ class StatErrors(eqx.Module):
gaussians_global: PyTree
gaussians_per_process: PyTree
poissons_per_process: PyTree
hists: PyTree = eqx.field(static=True)
histsw2: PyTree = eqx.field(static=True)
ntot: Array = eqx.field(static=True)
etot: Array = eqx.field(static=True)
threshold: float = eqx.field(static=True)
mask: Array = eqx.field(static=True)
hists: PyTree
histsw2: PyTree
ntot: Array
etot: Array
threshold: float
mask: Array

def __init__(
self,
Expand Down

0 comments on commit 08ea013

Please sign in to comment.