mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
E226 fix
This commit is contained in:
@ -96,7 +96,7 @@ def parse_alphanumeric_range(string):
|
||||
continue
|
||||
except ValueError:
|
||||
begin, end = dash_range, dash_range
|
||||
nums = list(range(ord(begin), ord(end)+1))
|
||||
nums = list(range(ord(begin), ord(end) + 1))
|
||||
for n in nums:
|
||||
values.append(chr(n))
|
||||
return values
|
||||
|
Reference in New Issue
Block a user