Skip to content

Commit

Permalink
**CI** Formatted code + Updated version number and documentation. [sk…
Browse files Browse the repository at this point in the history
…ip ci]
  • Loading branch information
github-actions[bot] committed Jan 18, 2024
1 parent a44d0f0 commit 5664646
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions dol/filesys.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,7 @@ def is_valid_key(self, k):
return bool(self._key_pattern.match(k))

def validate_key(
self,
k,
err_msg_format=_dflt_not_valid_error_msg,
err_type=KeyValidationError,
self, k, err_msg_format=_dflt_not_valid_error_msg, err_type=KeyValidationError,
):
if not self.is_valid_key(k):
raise err_type(err_msg_format.format(k))
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dol
version = 0.2.33
version = 0.2.34
url = https://github.com/i2mint/dol
platforms = any
description_file = README.md
Expand Down

0 comments on commit 5664646

Please sign in to comment.