Skip to content

Commit 765896e

Browse files
committed
🛠️ Fix for PyPi Package
Whoops! Had gotten so used to running the file in PyCharm that I forgot to test as a PyPi package
1 parent 17648fc commit 765896e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: photostats/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__: str = "Eric Mesa"
2-
__version__: str = "0.6.1"
2+
__version__: str = "0.7.0"
33
__license__: str = "GNU GPL v3.0"
44
__copyright__: str = "(c) 2020 Eric Mesa"
55
__email__: str = "[email protected]"

Diff for: photostats/__main__.py

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

3-
import get_exif # type: ignore
4-
import lenses # type: ignore
3+
from photostats import get_exif # type: ignore
4+
from photostats import lenses # type: ignore
55

66

77
def parse_args():

0 commit comments

Comments
 (0)