Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3ea9969

Browse files
committedFeb 4, 2025·
added pycharm git cloning and restructured working with packages into ecosystems part
1 parent feb3e54 commit 3ea9969

File tree

68 files changed

+458
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+458
-6
lines changed
 

‎text/main/basics/variables/errorsInIde/errorsInIde.tex

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,15 @@
177177
So even correct program output does not guarantee that the program itself is correct.
178178
Therefore, always checking each and every piece of code that your \pgls{IDE} marks as dodgy is very important.
179179
Make sure that you full understand all error and warning messages.
180-
Always fix them when necessary (obviously).
180+
181+
Warnings can be important, too.
182+
They can indicate possible errors, potential problems with variable types, or missing required packages (see, e.g., \cref{sec:gitClonePycharm}).
183+
Always fix errors and warnings wherever possible (obviously).
181184
Even where you deem the warnings as false-positives, try to fix them anyway.
182-
On one hand, \emph{you} might wrong on.
185+
They could result from non-standard code formatting that still \inQuotes{works}, but may be confusing for readers of your code.
186+
You should always try to produce warning-free code.
187+
For every warning or error that you deem as not a problem, remember:
188+
On one hand, \emph{you} might wrong.
183189
On the other hand, having fewer warnings and false-positive suspected errors makes it easier to find the actual problem if an actual problem happens.%
184190
%
185191
\FloatBarrier%

0 commit comments

Comments
 (0)
Please sign in to comment.