Skip to content

Commit

Permalink
adding first setup for network obj
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovaos committed Jun 25, 2024
1 parent 2ebff69 commit 56404e2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions networkcommons/network/_network.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
from __future__ import annotations

from networkcommons._noi._noi import Noi

class Network:

def __init__(self):
def __init__(self,
noi: Noi | list[str] | list[list[str]] | dict[str, list[str]],
universe: str | None = "omnipath"):
self.universe = universe
self.noi = noi




pass

0 comments on commit 56404e2

Please sign in to comment.