Unverified Commit a36d0841 authored by Gan Quan's avatar Gan Quan Committed by GitHub
Browse files

removing 3.6 f-string (#139)

parent 66676a54
...@@ -33,7 +33,7 @@ def create_bundled_function_class(name, cls): ...@@ -33,7 +33,7 @@ def create_bundled_function_class(name, cls):
for method_name in ('__init__', '__call__', 'is_spmv_supported', 'name'): for method_name in ('__init__', '__call__', 'is_spmv_supported', 'name'):
method = getattr(Bundled, method_name) method = getattr(Bundled, method_name)
method.__qualname__ = f'{Bundled.__qualname__}.{method_name}' method.__qualname__ = '{}.{}'.format(Bundled.__qualname__, method_name)
for method_name in ('__call__', 'is_spmv_supported', 'name'): for method_name in ('__call__', 'is_spmv_supported', 'name'):
method = getattr(Bundled, method_name) method = getattr(Bundled, method_name)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment