mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 13:41:15 -07:00
Remove Python 2 handling code (#2098)
* Remove Python 2 update modal * Remove Python 2 handling code * Remove backports dependencies * Remove uses of future and __future__ * Fix import * Remove requirements * Update lib folder * Clean up imports and blank lines --------- Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>
This commit is contained in:
parent
dcec1f6f5f
commit
de3393d62b
97 changed files with 7443 additions and 2917 deletions
|
@ -18,8 +18,12 @@ def assignment_source(num_pre, num_post, LISTNAME, ITERNAME):
|
|||
Returns a source fit for Assign() from fixer_util
|
||||
"""
|
||||
children = []
|
||||
pre = unicode(num_pre)
|
||||
post = unicode(num_post)
|
||||
try:
|
||||
pre = unicode(num_pre)
|
||||
post = unicode(num_post)
|
||||
except NameError:
|
||||
pre = str(num_pre)
|
||||
post = str(num_post)
|
||||
# This code builds the assignment source from lib2to3 tree primitives.
|
||||
# It's not very readable, but it seems like the most correct way to do it.
|
||||
if num_pre > 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue