Skip to content

Commit 48b8599

Browse files
Change class method _organize_keys to staticmethod
1 parent 7c73f9b commit 48b8599

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyslicer/api.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ def status_code(self):
4545
def headers(self):
4646
return self.__headers
4747

48-
def _organize_keys(self, master_key, custom_key, read_key, write_key):
48+
@staticmethod
49+
def _organize_keys(master_key, custom_key, read_key, write_key):
4950
return {
5051
"master_key": master_key,
5152
"custom_key": custom_key,

0 commit comments

Comments
 (0)