Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Restyled by isort
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and srevinsaju committed Sep 24, 2020
1 parent e082133 commit 2b39777
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions guiscrcpy/lib/toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import sys
import hashlib
import logging
import os
import shlex
import shutil
import subprocess
import shlex
import sys

from guiscrcpy.platform.platform import System

if System.system() == "Windows":
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ux/toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""

import platform
import shutil
import uuid
import platform

from qtpy import QtCore
from qtpy.QtCore import QPoint
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
"""

from setuptools import setup
from setuptools import find_packages
import os
import platform

from setuptools import find_packages, setup

try:
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
Expand Down

0 comments on commit 2b39777

Please sign in to comment.