diff options
author | BonfaceKilz | 2020-08-19 03:08:08 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-08-19 03:08:08 +0300 |
commit | caec08fa1e738fa9bc1b0b6bf626d8325f798712 (patch) | |
tree | 8c11025bdcf0048cad150f05d0e1a38295803cd9 /wqflask/utility | |
parent | e63331da5ed0a11f2a558d799dd570bf44ad584e (diff) | |
download | genenetwork2-caec08fa1e738fa9bc1b0b6bf626d8325f798712.tar.gz |
Convert the old not-equal syntax, <>, to !=
Run `2to3-3.8 -f ne -w .`
See: <https://docs.python.org/2/library/2to3.html#2to3fixer-ne>
Diffstat (limited to 'wqflask/utility')
-rw-r--r-- | wqflask/utility/svg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/svg.py b/wqflask/utility/svg.py index c6a5c260..c7356e57 100644 --- a/wqflask/utility/svg.py +++ b/wqflask/utility/svg.py @@ -360,7 +360,7 @@ class tspan(SVGelement): def __init__(self, text=None, **args): SVGelement.__init__(self, 'tspan', **args) - if self.text <> None: + if self.text != None: self.text = text def __repr__(self): |