Mihai

Results 14 comments of Mihai

I came to the same conclusion, wish I'd seen this first. or that this had been merged.

if you want a GPG key without a password, run `gpg --batch --passphrase '' --quick-gen-key [email protected] default default`

the cause is assignments in base.py: https://github.com/element-fi/elf-simulations/blob/2349ebf365f5c3c589ad42d85a263a241010dac7/elfpy/markets/base.py#L108-L109 ``` self.market_state = market_state self.block_time = block_time ``` replacing our init function with the following also solves the problem (without requiring a tweak...

the diff between the two resulting plantuml's https://github.com/element-fi/elf-simulations/commit/f22a7deb4ce451444e86ebef6774e87cc357319a

> Further you need to unregister with signal if you have used an official client, because we don't support the profile pin. If you don't do so, the number is...

pyenv-virtualenv solves this by identifying the env to be used in a folder in a `.python-version` file, which is then looked up automatically every time you enter a folder, and...

always have `"""` alone on a new line ![image](https://github.com/delvtech/elf-simulations/assets/16990562/fc9c2179-06e8-4c9d-8d53-8e9a80816f3f)

use `r"""` to start docstrings so that we can render backticks and other sphinxdoc stuff

> use `r"""` to start docstrings so that we can render backticks and other sphinxdoc stuff I disagree, we have a whole lot of docstrings right now that don't start...

previous discussion around removing parantheses around tuples: https://github.com/delvtech/elf-simulations/pull/136#discussion_r1088280879 in our codebase as of Oct11, I see 64 examples of return without parentheses and 8 with 64 return statements without parentheses:...