Skip to content

Commit f66dd7c

Browse files
committedDec 28, 2024
Fix import errors
1 parent 25a96d3 commit f66dd7c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed
 

‎mc_server_tool/src/arguments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
import os
33

4-
from mc_server_tool.src import (
4+
from .globals import (
55
DEFAULT_PACKAGE,
66
DEFAULT_PORT,
77
DEFAULT_PATH,

‎mc_server_tool/src/downloads.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
from bs4 import BeautifulSoup
88

9-
from mc_server_tool.src import (
9+
from .globals import (
1010
DEFAULT_TIMEOUT,
1111
RANDOM_USER_AGENT
1212
)

‎mc_server_tool/src/globals.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import random
2+
import os
23

34
#Here are stored all defaults!
45

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44
[project]
55
name = "mc-server-tool"
6-
version = "0.0.7"
6+
version = "0.0.8"
77
authors = [
88
{ name="Tmaster055" },
99
]

0 commit comments

Comments
 (0)
Please sign in to comment.