Merge pull request #39 from abbassix/patch-1
using f-strings instead of % operator
This commit is contained in:
commit
7b13f5b8fd
@ -482,7 +482,7 @@
|
||||
" self.y = y\n",
|
||||
"\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",
|
||||
" def __abs__(self):\n",
|
||||
" return math.hypot(self.x, self.y)\n",
|
||||
|
Loading…
x
Reference in New Issue
Block a user