There was an error while loading. Please reload this page.
2 parents 741bc2b + 2b8c011 commit 38855bdCopy full SHA for 38855bd
ChangeLog.md
@@ -6,6 +6,8 @@
6
7
- Added a couple more colour options.
8
([#9](https://github.com/davep/complexitty/pull/9))
9
+- Fixed the `--zoom` command line switch so that it accepts floating point
10
+ values. ([#11](https://github.com/davep/complexitty/issues/11))
11
12
## v0.2.0
13
src/complexitty/__main__.py
@@ -100,7 +100,7 @@ def get_args() -> Namespace:
100
"-z",
101
"--zoom",
102
help="Set the zoom level",
103
- type=int,
+ type=float,
104
)
105
106
# Add --theme
0 commit comments