1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

Use relative imports (#1057)

* Use relative imports in test

* Use relative imports

* Add myself to contributors :)
This commit is contained in:
Mickaël Schoentgen
2021-05-05 14:13:39 +02:00
committed by GitHub
parent 7cbdf2c608
commit a3a08a9a22
50 changed files with 118 additions and 118 deletions

View File

@@ -4,8 +4,8 @@ import os
from pathlib import Path
from typing import Union
from httpie import __version__
from httpie.compat import is_windows
from . import __version__
from .compat import is_windows
ENV_XDG_CONFIG_HOME = 'XDG_CONFIG_HOME'