Skip to content

Commit

Permalink
Remove the default length
Browse files Browse the repository at this point in the history
  • Loading branch information
ramyaragupathy committed Oct 23, 2019
1 parent 8d133b6 commit edf3f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/versions/e3282e2db2d7_.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def upgrade():
result = org[0]
if result.startswith("'") or result.startswith('"'):
print(result)
result = result[1:len(result) - 1]
result = result[1:]
for org_key, org_values in org_dictionaries.items():
if result in org_values:
result = org_key
Expand Down

0 comments on commit edf3f91

Please sign in to comment.