Skip to content

Commit

Permalink
Fixed import name errors
Browse files Browse the repository at this point in the history
  • Loading branch information
clerie committed Oct 28, 2018
1 parent 2720991 commit 2c1b149
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Getting Minecraft Player Information from Mojang API.

## Usage
1. `pip install mcuuid` OR add the mcuuid.py file to your Python path.
1. `pip install mcuuid`
2. Use the module like this:

```
Expand Down
2 changes: 1 addition & 1 deletion mcuuid/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
name = "mcuuid"
from mcuuid import GetPlayerData
from mcuuid.mcuuid import GetPlayerData
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="mcuuid",
version="0.1",
version="0.1.1",
author="Clemens Riese",
author_email="[email protected]",
description="Getting Minecraft Player Information from Mojang API.",
Expand Down
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Import our module
from mcuuid import GetPlayerData
from mcuuid.mcuuid import GetPlayerData

### Import some other necessary modules
import sys
Expand Down

0 comments on commit 2c1b149

Please sign in to comment.