Skip to content

Commit

Permalink
Fixed codacy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin PARIS committed Dec 2, 2018
1 parent c9d027f commit 007a320
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion core/DockerClient.py
@@ -1,4 +1,6 @@
import docker, os, json
import docker
import json


class DockerClient:
@staticmethod
Expand Down
5 changes: 3 additions & 2 deletions core/Environment.py
@@ -1,8 +1,9 @@
import docker, os, io
import docker

from core.DockerClient import DockerClient
from core.TarUtils import make_environment_tarfile
from core.LineBuffer import LineBuffer
from core.TarUtils import make_environment_tarfile


class Environment:
def __init__(self, name: str, os: str, arch: str):
Expand Down
5 changes: 3 additions & 2 deletions packagers/PhoenicisWinePackageCreator.py
@@ -1,10 +1,11 @@
import os, pathlib
import pathlib

from builders.WineBuilder import WineBuilder
from core.Container import Container
from core.Environment import Environment
from builders.WineBuilder import WineBuilder
from storage.PackageStore import PackageStore


class PhoenicisWinePackageCreator:
def __init__(self):
self._output_callback = None
Expand Down

0 comments on commit 007a320

Please sign in to comment.