From 3efff2273afa0b4a6aea5b86995ff0e18e631ad3 Mon Sep 17 00:00:00 2001 From: alufers Date: Mon, 16 May 2022 18:34:07 +0200 Subject: [PATCH] fix: imports --- mitmproxy2swagger/mitmproxy2swagger.py | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mitmproxy2swagger/mitmproxy2swagger.py b/mitmproxy2swagger/mitmproxy2swagger.py index df42dbd..4206dd6 100755 --- a/mitmproxy2swagger/mitmproxy2swagger.py +++ b/mitmproxy2swagger/mitmproxy2swagger.py @@ -13,10 +13,10 @@ import os import argparse import ruamel.yaml import re -import swagger_util -from har_capture_reader import HarCaptureReader, har_archive_heuristic -from mitmproxy_capture_reader import MitmproxyCaptureReader, mitmproxy_dump_file_huristic -import console_util +import mitmproxy2swagger.console_util +from mitmproxy2swagger.har_capture_reader import HarCaptureReader, har_archive_heuristic +from mitmproxy2swagger.mitmproxy_capture_reader import MitmproxyCaptureReader, mitmproxy_dump_file_huristic +import mitmproxy2swagger.console_util def path_to_regex(path): # replace the path template with a regex diff --git a/pyproject.toml b/pyproject.toml index fddcdf3..b1a60df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mitmproxy2swagger" -version = "0.5.0" +version = "0.5.1" description = "" authors = ["alufers "] readme = "README.md"