Compare commits
25 Commits
48fe789d67
...
00021c00e6
Author | SHA1 | Date | |
---|---|---|---|
00021c00e6 | |||
4e69273b5e | |||
923c00d72f | |||
7bd15ede88 | |||
4960c95637 | |||
adbc86100b | |||
cb178bb694 | |||
18e5a4ac5a | |||
215926269e | |||
4487c3825b | |||
5608a6717e | |||
b0ec2a51f5 | |||
ded473c290 | |||
d2f85c70ee | |||
050f1b597c | |||
b4116a738d | |||
aae467021b | |||
5ae990a83b | |||
3046e33742 | |||
6d8efe82f2 | |||
534002d4b5 | |||
4364c809f3 | |||
325a8b9590 | |||
c071b33732 | |||
42a7df3055 |
@ -90,5 +90,5 @@ from .utils import (
|
||||
|
||||
__author__ = 'Jan Petykiewicz'
|
||||
|
||||
__version__ = '3.3'
|
||||
__version__ = '3.4'
|
||||
version = __version__ # legacy
|
||||
|
@ -123,7 +123,7 @@ class Circle(Shape):
|
||||
return self
|
||||
|
||||
def mirror(self, axis: int = 0) -> 'Circle': # noqa: ARG002 (axis unused)
|
||||
self.offset *= -1
|
||||
self.offset[axis - 1] *= -1
|
||||
return self
|
||||
|
||||
def scale_by(self, c: float) -> 'Circle':
|
||||
|
@ -89,3 +89,7 @@ lint.ignore = [
|
||||
"TRY003", # Long exception message
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-rsXx"
|
||||
testpaths = ["masque"]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user