Merge pull request #39 from abbassix/patch-1
using f-strings instead of % operator
This commit is contained in:
@@ -482,7 +482,7 @@
|
|||||||
" self.y = y\n",
|
" self.y = y\n",
|
||||||
"\n",
|
"\n",
|
||||||
" def __repr__(self):\n",
|
" def __repr__(self):\n",
|
||||||
" return 'Vector(%r, %r)' % (self.x, self.y)\n",
|
" return f'Vector({self.x!r}, {self.y!r})'\n",
|
||||||
"\n",
|
"\n",
|
||||||
" def __abs__(self):\n",
|
" def __abs__(self):\n",
|
||||||
" return math.hypot(self.x, self.y)\n",
|
" return math.hypot(self.x, self.y)\n",
|
||||||
|
|||||||
Reference in New Issue
Block a user