Skip to content

Commit

Permalink
Merge branch 'zt20xx-fix_3.11_ValueError'
Browse files Browse the repository at this point in the history
  • Loading branch information
veritas501 committed Jun 2, 2023
2 parents 2b9a138 + 5fca277 commit 675c138
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ae64/ae64.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

from dataclasses import dataclass
from dataclasses import dataclass, field
from typing import List, Tuple, AnyStr
from copy import deepcopy

Expand All @@ -25,7 +25,7 @@ class MulCacheStruct:

@dataclass
class MulGadgetStruct:
mul: MulCacheStruct = MulCacheStruct()
mul: MulCacheStruct = field(default_factory=MulCacheStruct)
offset: int = 0


Expand All @@ -38,8 +38,8 @@ class EncodeInfoStruct:

@dataclass
class EncodeInfoPlusStruct:
info: EncodeInfoStruct = EncodeInfoStruct()
gadget: MulGadgetStruct = MulGadgetStruct()
info: EncodeInfoStruct = field(default_factory=EncodeInfoStruct)
gadget: MulGadgetStruct = field(default_factory=MulGadgetStruct)
needPushByte: bool = False
needChangeRdi: bool = False
needChangeRdx: bool = False
Expand Down

0 comments on commit 675c138

Please sign in to comment.