Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dieser-niko authored Aug 12, 2024
1 parent 9ef7c50 commit 28855ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ESIRemote"
version = "0.2"
version = "0.3"
dependencies = [
"requests",
]
Expand Down
4 changes: 2 additions & 2 deletions src/esi_remote/esi_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import requests
from typing import List, Union
import models
from filter_list import FilterList
import .models
from .filter_list import FilterList


class ESIRemote:
Expand Down
2 changes: 1 addition & 1 deletion src/esi_remote/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
import json

from filter_list import FilterList
from .filter_list import FilterList

variable_pattern = re.compile(r'(?<!^)(?=[A-Z])')

Expand Down

0 comments on commit 28855ca

Please sign in to comment.