Commit 96b5e15d by Owo Sugiana

Penggunaan pkgutil agar lebih fleksibel saat pip install -e

1 parent e65fe98a
0.1.4 25-11-2021
0.1.4 28-11-2021
----------------
- Response yang mengandung spasi diganti dengan underscore
- Penggunaan pkgutil agar lebih fleksibel saat pip install -e
0.1.3 16-3-2021
---------------
......
......@@ -31,7 +31,7 @@ class InquiryResponse(Row):
return self.to_str()
def to_str(self):
return ':'.join(list(self)).replace(' ', '_')
return ':'.join(list(self))
def from_err(self, err):
self.values['Response Code'] = err.code
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!