-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when using CLI on multiple modules on OSX and Linux #5
Comments
Hmm, if possible could you share the contents of the module it's failing on? I've tested it out quite a bit on all operating systems, and I've never hit that error. And if you try this code out in a console, it should return true: "test \r".rstrip("\r\n") == "test \r\n".rstrip("\r\n") |
Hi, thanks for the response. Hopefully I'm not missing something simple... Here's an example, a module called "gents", in the gents subdirectory, containing an empty init.py, plus two files, class Person(BaseModel): schema2.py: class Address(BaseModel): I can generate a TypeScript file from either python file by using the command line: But trying either ... results in a stack trace like this: Any ideas? thanks in advance... |
Hi @schleind -- sorry for taking so long to reply. Your error there is that the value you provide to This was a choice I made because it was much more straightforward to have this utility apply to a single module (and its submodules). Recursively searching through directories is messy, error-prone, and introduces other problems, such as naming collisions. However, I'm open to exploring it if there's a demand. That said, I believe that if you have a |
And hi @0x108 -- again, sorry for taking so long to reply to this! Are you still encountering this error? I've released a new version (v1.0.10) which touches this code, so it may be resolved now. If it's still an issue, I can make sure a fix is released within the next few days. |
Hi @phillipdupuis, gents is a module containing an init.py, when I put one line of code into init.py "print('accessing module')" in gents, and run 2023-03-30 18:05:45,478 Finding pydantic models... Then I get a similar error, ending in: |
I've tried this by defining a single module with multiple schema py's on OSX and Linux and am getting an error:
line 111, in remove_master_model_from_output
new_lines = lines[:start] + lines[(end + 1) :]
TypeError: unsupported operand type(s) for +: ‘NoneType’ and ‘int’
Looking at the code it seems that "end" is initialized to None and never is assigned, although maybe "start" isn't either.
You're testing for a Windows line separator "\r\n" which means it won't work on OSX or Linux, but I believe you could fix it by replacing "\r\n" with os.linesep.
The text was updated successfully, but these errors were encountered: