Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-order imports and add chardet
Browse files Browse the repository at this point in the history
AHReccese committed Jul 22, 2024
1 parent 48fffe0 commit 310367a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions reserver/reserver_obj.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# -*- coding: utf-8 -*-
"""Reserver modules."""
from .reserver_func import does_package_exist, generate_template_setup_py
from .util import has_named_parameter, remove_dir
from os import environ, path, getcwd, remove
import chardet
from re import sub
from sys import executable
from os import environ, path, getcwd, remove
from .util import has_named_parameter, remove_dir
from subprocess import check_output, CalledProcessError
from re import sub
from .reserver_func import does_package_exist, generate_template_setup_py


class PyPIUploader:

0 comments on commit 310367a

Please sign in to comment.