Skip to content

Commit

Permalink
Merge pull request #22 from aDAVISk/dev
Browse files Browse the repository at this point in the history
Bug-fixed for v0.3.2-pypi-released
  • Loading branch information
aDAVISk authored Dec 21, 2023
2 parents 42aa8e6 + 0a77f32 commit a7047f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
__pycache__/
*.egg-info/
tile_sample2/
build/
Binary file modified dist/xyztilefile-0.3.1-py3-none-any.whl
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='xyztilefile', # パッケージ名(pip listで表示される)
version="0.3.1", # バージョン
version="0.3.2", # バージョン
description="manage files in xyz tile format", # 説明
author='Akito Davis Kawamura', # 作者名
license='MIT', # ライセンス
Expand Down
4 changes: 2 additions & 2 deletions src/xyztilefile/xyzgeneric.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def clc(self, cache=None):
self._cache = cache

class XYZHttpGeneric(XYZGeneric):
def __init__(self, base, loadfunc=None, **kwargs):
super().__init__(base, loadfunc=loadfunc, **kwargs)
def __init__(self, base, loadfunc=_loadfunc, **kwargs):
super().__init__(base, loadfunc=loadfunc, savefunc=None, **kwargs)

def get(self, x:int, y:int, z:int):
key = self._keyfmt.format(x=x,y=y,z=z)
Expand Down

0 comments on commit a7047f4

Please sign in to comment.