Skip to content

Commit

Permalink
minor formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kazewong committed Dec 5, 2023
1 parent 8f2ec0a commit c5ebc38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/jimgw/data.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import equinox as eqx
from abc import ABC, abstractmethod
from jaxtyping import Array

class Data(ABC):

class Data(ABC):
@abstractmethod
def __init__(self):
raise NotImplementedError
Expand Down
4 changes: 2 additions & 2 deletions src/jimgw/model.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import equinox as eqx
from abc import ABC, abstractmethod
from abc import abstractmethod
from jaxtyping import Array

class Model(eqx.Module):

class Model(eqx.Module):
params: dict

@abstractmethod
Expand Down

0 comments on commit c5ebc38

Please sign in to comment.