Skip to content

Commit 947aa6d

Browse files
authored
removing extra argument (version) and flipping the logger and config paramaters to match the Satellite constructor (#7)
1 parent ef060f7 commit 947aa6d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

repl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
from lib.pysquared.logger import Logger
66
from lib.pysquared.nvm.counter import Counter
77
from lib.pysquared.satellite import Satellite
8-
from version import __version__
98

109
logger: Logger = Logger(
1110
error_counter=Counter(index=register.ERRORCNT, datastore=microcontroller.nvm),
1211
colorized=False,
1312
)
1413
config: Config = Config("config.json")
1514
logger.info("Initializing a cubesat object as `c` in the REPL...")
16-
c: Satellite = Satellite(config, logger, __version__)
15+
c: Satellite = Satellite(logger, config)

0 commit comments

Comments
 (0)