Skip to content

Commit

Permalink
1.0.39
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Mar 23, 2024
1 parent bdd83fc commit e9beafb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hypickle/Args.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from typing import List, Optional
import copy
import re

from . import Utils
from . import Files

class Args:
def __init__(self, args: List[str]):
print(args[0])
assert args[0] == 'hypickle/main.py'
assert re.split(r'/|\\', args[0])[-1] in ('main.py', 'hypickle')
args = [arg if arg.endswith('.txt') else arg.lower() for arg in args[1:]]
self._ARGS = Files.apply_aliases(args)
self._ARG_KEYWORDS = ('all', 'friendsoffriends', 'justuuids', 'checkresults',
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.0"
name = "hypickle"
version = "1.0.38"
version = "1.0.39"
dependencies = [
"requests",
"rich",
Expand Down

0 comments on commit e9beafb

Please sign in to comment.