2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Merge pull request #3011 from matmair/matmair/issue2996

Remove python 2 code
This commit is contained in:
Oliver
2022-05-17 00:51:31 +10:00
committed by GitHub
52 changed files with 1 additions and 154 deletions

View File

@ -2,9 +2,6 @@
JSON API for the plugin app
"""
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.conf import settings
from django.urls import include, re_path

View File

@ -2,9 +2,6 @@
Functions for triggering and responding to server side events
"""
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import logging
from django.conf import settings

View File

@ -2,8 +2,6 @@
Plugin model definitions
"""
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import warnings
from django.utils.translation import gettext_lazy as _

View File

@ -2,9 +2,6 @@
JSON serializers for plugin app
"""
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
import subprocess